Searched refs:direction (Results 176 - 200 of 290) sorted by relevance

1234567891011>>

/external/eigen/Eigen/src/Geometry/
H A DHyperplane.h125 normal() = parametrized.direction().unitOrthogonal();
/external/harfbuzz_ng/src/
H A Dhb-common.h124 hb_direction_to_string (hb_direction_t direction);
/external/icu/icu4c/source/io/unicode/
H A Dustdio.h213 * Enum for which direction of stream a transliterator applies to.
759 * @param direction either U_READ, U_WRITE, or U_READWRITE - sets
760 * which direction the transliterator is to be applied to. If
762 * direction.
771 u_fsettransliterator(UFILE *file, UFileDirection direction,
/external/icu/icu4c/source/layoutex/
H A DParagraphLayout.cpp358 // now intersect the font, direction and script runs...
1099 UBiDiDirection direction = ((fStyleRunInfo[run].level & 1) == 0)? UBIDI_LTR : UBIDI_RTL; local
1132 line->append(fStyleRunInfo[run].font, direction, glyphCount, glyphs, positions, glyphToCharMap);
1221 void ParagraphLayout::Line::append(const LEFontInstance *font, UBiDiDirection direction, le_int32 glyphCount, argument
1234 fRuns[fRunCount++] = new ParagraphLayout::VisualRun(font, direction, glyphCount, glyphs, positions, glyphToCharMap);
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DQuaternion.java1264 * quaternion based on a direction and an up vector. It computes
1265 * the rotation to transform the z-axis to point into 'direction'
1268 * @param direction
1271 * a vector indicating the local up direction.
1274 public void lookAt(Vector3f direction, Vector3f up) { argument
1276 vars.vect3.set(direction).normalizeLocal();
1277 vars.vect1.set(up).crossLocal(direction).normalizeLocal();
1278 vars.vect2.set(direction).crossLocal(vars.vect1).normalizeLocal();
1301 * in the exact opposite direction of this Quaternion.
1314 * direction o
[all...]
/external/kernel-headers/original/uapi/linux/genwqe/
H A Dgenwqe_card.h457 * direction: 0: read/1: read and write
474 __u64 direction; member in struct:genwqe_mem
/external/libavc/common/arm/
H A Dih264_inter_pred_luma_horz_hpel_vert_hpel_a9q.s51 @* applies the six tap filter in the vertical direction on the
53 @* horizontal direction on the output of the first stage. The six tap
60 @* the predictors first in the horizontal direction and then in the
61 @* vertical direction to output the (1/2,1/2).
H A Dih264_inter_pred_luma_horz_qpel_vert_hpel_a9q.s51 @* applies the six tap filter in the vertical direction on the
53 @* horizontal direction on the output of the first stage. It then averages
61 @* the predictors first in the verical direction and then in the
62 @* horizontal direction to output the (1/2,1/2). It then averages
/external/libpcap/
H A Dpcap-can-linux.c309 "Setting direction to PCAP_D_OUT is not supported on can");
313 p->direction = d;
H A Dpcap-int.h181 /* We're accepting only packets in this direction/these directions. */
182 pcap_direction_t direction; member in struct:pcap
/external/mesa3d/src/mesa/main/
H A DAPIspecutil.py106 return [func.direction]
/external/tcpdump/
H A Dprint-juniper.c415 u_int8_t direction; member in struct:juniper_l2info_t
988 if (l2info.direction != JUNIPER_BPF_PKT_IN && /* ether-over-1483 encaps ? */
1153 l2info->direction = p[3]&JUNIPER_BPF_PKT_IN;
1160 if (eflag) /* print direction */
1161 printf("%3s ",tok2str(juniper_direction_values,"---",l2info->direction));
/external/v8/tools/
H A Dgenerate-ten-powers.scm247 (("--round" ?direction (help "Round bignums (down, round or up)"))
248 (set! *round* (string->symbol direction)))
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/bench/
H A Dbootstrap.js338 , direction = type == 'next' ? 'left' : 'right'
356 $active.addClass(direction)
357 $next.addClass(direction)
359 $next.removeClass([type, direction].join(' ')).addClass('active')
360 $active.removeClass(['active', direction].join(' '))
/external/libedit/src/
H A Dreadline.c1600 history_search(const char *str, int direction) argument
1613 if (history(h, &ev, direction < 0 ? H_NEXT:H_PREV) != 0)
1625 history_search_prefix(const char *str, int direction) argument
1629 return (history(h, &ev, direction < 0 ?
1641 int direction __attribute__((__unused__)), int pos)
/external/opencv/ml/src/
H A Dmltree.cpp50 priors = priors_mult = counts = buf = direction = split_buf = 0;
64 priors = priors_mult = counts = buf = direction = split_buf = 0;
165 cvReleaseMat( &direction );
175 direction = data->direction; data->direction = 0;
531 CV_CALL( direction = cvCreateMat( 1, sample_count, CV_8UC1 ));
905 cvReleaseMat( &direction );
1417 // calculate direction (left(-1),right(1),missing(0))
1430 char* dir = (char*)data->direction
[all...]
/external/aac/libSBRenc/src/
H A Dton_corr.cpp456 INT direction)
466 if(direction) {
/external/ceres-solver/internal/ceres/
H A Dline_search.cc113 const Vector& direction) {
115 direction_ = direction;
112 Init(const Vector& position, const Vector& direction) argument
/external/freetype/src/pshinter/
H A Dpshglob.c42 FT_UInt direction )
44 PSH_Dimension dim = &globals->dimension[direction];
/external/icu/icu4c/source/io/
H A Dustdio.c65 u_fsettransliterator(UFILE *file, UFileDirection direction, argument
81 if(direction & U_READ)
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DCollectionUtilities.java153 * Get the "best" in collection. That is the least if direction is < 0, otherwise the greatest. The first is chosen if there are multiples.
158 * @param direction
161 public static <T, U extends Collection<T>> T getBest(U c, Comparator<T> comp, int direction) { argument
165 if (direction < 0) {
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
H A DTestWalkingChar.java232 Vector3f direction = new Vector3f(-0.1f, -0.7f, -1).normalizeLocal();
234 dl.setDirection(direction);
/external/kernel-headers/original/uapi/sound/
H A Dasound.h299 int stream; /* RO/WR (control): stream direction */
982 #define SNDRV_CTL_NAME_IEC958(expl,direction,what) "IEC958 " expl SNDRV_CTL_NAME_##direction SNDRV_CTL_NAME_IEC958_##what
/external/pdfium/core/src/reflow/
H A Dreflowedtextpage.cpp210 int CRF_TextPage::GetOrderByDirection(int index, int direction) const
358 int CRF_TextPage::GetWordBreak(int index, int direction) const
/external/pdfium/third_party/freetype/src/pshinter/
H A Dpshglob.c42 FT_UInt direction )
44 PSH_Dimension dim = &globals->dimension[direction];

Completed in 877 milliseconds

1234567891011>>