HomeSort by relevance Sort by last modified time
    Searched refs:lx (Results 101 - 125 of 153) sorted by null

1 2 3 45 6 7

  /external/libpng/contrib/tools/
genpng.c 557 double lx = x2 - x1; local
559 double len2 = lx*lx + ly*ly;
570 cross = x * ly - y * lx;
582 * lx.x+ly.y. The actual distance (in pixels) is:
586 dot = lx * x + ly * y;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
combined_encode.cpp 44 Int lx = currVop->pitch; /* with padding */ local
210 offset += (lx << 4) - width;
272 Int lx = currVop->pitch; /* , with padding */ local
524 offset += (lx << 4) - width;
539 offset += (lx << 4) - width;
  /prebuilts/go/darwin-x86/src/regexp/
onepass.go 164 lx, rx int
188 for lx < leftLen || rx < rightLen {
191 ok = extend(&lx, leftRunes, leftPC)
192 case lx >= leftLen:
194 case (*rightRunes)[rx] < (*leftRunes)[lx]:
197 ok = extend(&lx, leftRunes, leftPC)
  /prebuilts/go/linux-x86/src/regexp/
onepass.go 164 lx, rx int
188 for lx < leftLen || rx < rightLen {
191 ok = extend(&lx, leftRunes, leftPC)
192 case lx >= leftLen:
194 case (*rightRunes)[rx] < (*leftRunes)[lx]:
197 ok = extend(&lx, leftRunes, leftPC)
  /bionic/libm/upstream-freebsd/lib/msun/ld128/
s_erfl.c 197 uint64_t lx, llx; local
201 EXTRACT_LDBL128_WORDS(hx, lx, llx, x);
259 uint64_t lx, llx; local
262 EXTRACT_LDBL128_WORDS(hx, lx, llx, x);
  /external/libhevc/decoder/
ihevcd_mv_pred.c 225 void GET_MV_NBR_ST(ref_list_t **ps_ref_pic_list, WORD32 *pi4_avail_flag, pic_buf_t *ps_cur_pic_buf_lx, pu_t **aps_nbr_pu, mv_t *ps_mv, WORD32 num_nbrs, WORD32 lx)
231 if(0 == lx)
265 void GET_MV_NBR_LT(ref_list_t **ps_ref_pic_list, slice_header_t *ps_slice_hdr, WORD32 *pi4_avail_flag, pic_buf_t *ps_cur_pic_buf_lx, pu_t **aps_nbr_pu, mv_t *ps_mv, WORD32 num_nbrs, WORD32 lx)
271 if(0 == lx)
  /libcore/ojluni/src/main/java/java/util/logging/
Level.java 495 Level lx = (Level)ox; local
496 return (lx.value == this.value);
  /frameworks/base/core/java/com/android/internal/widget/
PointerLocationView.java 324 float lx = ps.mEstimator.estimateX(-ESTIMATE_PAST_POINTS * ESTIMATE_INTERVAL); local
329 canvas.drawLine(lx, ly, x, y, mPaint);
330 lx = x;
343 lx = ps.mAltEstimator.estimateX(-ESTIMATE_PAST_POINTS * ESTIMATE_INTERVAL);
348 canvas.drawLine(lx, ly, x, y, mPaint);
349 lx = x;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
mathmodule.c 1094 PyObject *lx; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
trees.c 1067 unsigned lx = 0; \/* running index in l_buf *\/ local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
mathmodule.c 1094 PyObject *lx; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
trees.c 1079 unsigned lx = 0; \/* running index in l_buf *\/ local
    [all...]
  /external/libavc/decoder/
ih264d_process_pslice.c 818 WORD8 i, cont, lx; local
    [all...]
  /external/pdfium/third_party/zlib_v128/
trees.c 1067 unsigned lx = 0; \/* running index in l_buf *\/ local
    [all...]
  /external/python/cpython2/Modules/
mathmodule.c 1093 PyObject *lx; local
    [all...]
  /external/python/cpython2/Modules/zlib/
trees.c 1067 unsigned lx = 0; \/* running index in l_buf *\/ local
    [all...]
  /external/zlib/src/
trees.c 1067 unsigned lx = 0; \/* running index in l_buf *\/ local
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_exp2.c 345 uint32_t hx, ix, lx, i0; local
353 GET_LOW_WORD(lx,x);
354 if(((ix & 0xfffff) | lx) != 0 || (hx & 0x80000000) == 0)
  /external/valgrind/none/tests/amd64/
gen_insn_test.pl 977 print qq| printf(" eflags & 0x%lx = 0x%lx (expected 0x%lx)\\n", $values[0]UL, $result->{name}.ud\[0\] & $values[0]UL, $values[1]UL);\n|;
  /external/valgrind/none/tests/x86/
gen_insn_test.pl 938 print qq| printf(" eflags & 0x%lx = 0x%lx (expected 0x%lx)\\n", $values[0]UL, $result->{name}.ud\[0\] & $values[0]UL, $values[1]UL);\n|;
  /external/syslinux/com32/lib/zlib/
trees.c 1083 unsigned lx = 0; \/* running index in l_buf *\/ local
    [all...]
  /external/llvm/lib/Support/
APInt.cpp 301 uint64_t lx = x[i] & 0xffffffffULL; local
308 dest[i] = carry + lx * ly;
316 carry += (lx * hy) & 0xffffffffULL;
319 (carry >> 32) + ((lx * hy) >> 32) + hx * hy;
332 uint64_t carry = 0, lx = 0, hx = 0; local
334 lx = x[j] & 0xffffffffULL;
341 uint64_t resul = carry + lx * ly;
346 carry += (lx * hy) & 0xffffffffULL;
351 ((lx * hy) >> 32) + hx * hy;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
APInt.cpp 298 uint64_t lx = x[i] & 0xffffffffULL; local
305 dest[i] = carry + lx * ly;
313 carry += (lx * hy) & 0xffffffffULL;
316 (carry >> 32) + ((lx * hy) >> 32) + hx * hy;
329 uint64_t carry = 0, lx = 0, hx = 0; local
331 lx = x[j] & 0xffffffffULL;
338 uint64_t resul = carry + lx * ly;
343 carry += (lx * hy) & 0xffffffffULL;
348 ((lx * hy) >> 32) + hx * hy;
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
APInt.cpp 317 uint64_t lx = x[i] & 0xffffffffULL; local
324 dest[i] = carry + lx * ly;
332 carry += (lx * hy) & 0xffffffffULL;
335 (carry >> 32) + ((lx * hy) >> 32) + hx * hy;
348 uint64_t carry = 0, lx = 0, hx = 0; local
350 lx = x[j] & 0xffffffffULL;
357 uint64_t resul = carry + lx * ly;
362 carry += (lx * hy) & 0xffffffffULL;
367 ((lx * hy) >> 32) + hx * hy;
    [all...]
  /external/libvorbis/doc/
07-floor1.tex 359 2) [lx] = 0
367 8) \link{vorbis:spec:render:line}{render_line}( [lx], [ly], [hx], [hy], [floor] )
368 9) [lx] = [hx]

Completed in 1798 milliseconds

1 2 3 45 6 7