HomeSort by relevance Sort by last modified time
    Searched refs:x3 (Results 276 - 300 of 1543) sorted by null

<<11121314151617181920>>

  /external/clang/test/SemaTemplate/
instantiate-member-pointers.cpp 29 struct X3 {
30 X3<T, Class, Ptr> &operator=(const T& value) {
35 X3<int, Y, &Y::x> x3; variable
41 X3<int, Y, Member> member;
  /external/lzma/Asm/x86/
7zAsm.asm 45 x3 equ EBX define
74 r3 equ x3
AesOpt.asm 86 sub x3, 32
100 mov x3, x6
114 mov x3, x6
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILDeviceInfo.h 37 ByteOps = 0x3, // Byte(char) is support or not.
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
TrackFragmentRandomAccessBox.java 91 lengthSizeOfSampleNum = ((int) (temp & 0x3)) + 1;
121 temp = temp | (((lengthSizeOfTrafNum - 1) & 0x3) << 4);
122 temp = temp | (((lengthSizeOfTrunNum - 1) & 0x3) << 2);
123 temp = temp | ((lengthSizeOfSampleNum - 1) & 0x3);
  /external/skia/src/animator/
SkPathParts.cpp 157 SK_MEMBER(x3, Float),
167 SkCubicTo::SkCubicTo() : x1(0), y1(0), x2(0), y2(0), x3(0), y3(0) {
171 fPath->fPath.cubicTo(x1, y1, x2, y2, x3, y3);
188 fPath->fPath.rCubicTo(x1, y1, x2, y2, x3, y3);
  /external/v8/src/
unicode-inl.h 170 unsigned aligned = (offset + 0x3) & ~0x3;
200 unsigned aligned = (*offset + 0x3) & ~0x3;
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_dequantize_sample.cpp 223 int32 two_raise_one_fourth = pow_2_1_fourth[global_gain&0x3];
259 two_raise_one_fourth = pow_2_1_fourth[global_gain&0x3];
282 two_raise_one_fourth = pow_2_1_fourth[global_gain&0x3];
334 int32 two_raise_one_fourth = pow_2_1_fourth[global_gain&0x3];
  /hardware/qcom/msm8960/kernel-headers/linux/
msm_ion.h 56 VIDEO_NONPIXEL = 0x3,
  /hardware/qcom/msm8x74/kernel-headers/linux/
msm_ion.h 66 VIDEO_NONPIXEL = 0x3,
  /hardware/samsung_slsi/exynos5/include/
s5p_fimc_v4l2.h 92 FIMC_OVLY_DMA_MANUAL = 0x3, /* Non-destructive Overlay with DMA */
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_utilities_camera.h 50 \return K(3x3) intrinsic calibration matrix
63 Make a 3x3 identity matrix
72 Invert intrinsic calibration matrix K(3x3)
158 double x3,m; local
160 x3=H[6]*x[0]+H[7]*x[1]+H[8];
161 if(x3!=0.0)
163 m=1.0/x3;
  /packages/apps/Camera2/jni/feature_stab/db_vlvm/
db_utilities_camera.h 50 \return K(3x3) intrinsic calibration matrix
63 Make a 3x3 identity matrix
72 Invert intrinsic calibration matrix K(3x3)
158 double x3,m; local
160 x3=H[6]*x[0]+H[7]*x[1]+H[8];
161 if(x3!=0.0)
163 m=1.0/x3;
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_camera.h 50 \return K(3x3) intrinsic calibration matrix
63 Make a 3x3 identity matrix
72 Invert intrinsic calibration matrix K(3x3)
158 double x3,m; local
160 x3=H[6]*x[0]+H[7]*x[1]+H[8];
161 if(x3!=0.0)
163 m=1.0/x3;
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/plat-linux2/
DLFCN.py 79 RTLD_BINDING_MASK = 0x3
  /external/chromium_org/third_party/skia/src/core/
SkEdge.cpp 339 SkFDot6 x0, y0, x1, y1, x2, y2, x3, y3; local
350 x3 = int(pts[3].fX * scale);
360 x3 = pts[3].fX >> shift;
368 SkTSwap(x0, x3);
391 SkFDot6 dx = cubic_delta_from_line(x0, x1, x2, x3);
420 SkFixed D = SkFDot6UpShift(x3 + 3 * (x1 - x2) - x0, upShift);
436 fCLastX = SkFDot6ToFixed(x3);
  /external/skia/src/core/
SkEdge.cpp 339 SkFDot6 x0, y0, x1, y1, x2, y2, x3, y3; local
350 x3 = int(pts[3].fX * scale);
360 x3 = pts[3].fX >> shift;
368 SkTSwap(x0, x3);
391 SkFDot6 dx = cubic_delta_from_line(x0, x1, x2, x3);
420 SkFixed D = SkFDot6UpShift(x3 + 3 * (x1 - x2) - x0, upShift);
436 fCLastX = SkFDot6ToFixed(x3);
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_noise.c 346 float x1, y1, z1, x2, y2, z2, x3, y3, z3; local
421 x3 = x0 - 1.0f + 3.0f * G3;/* Offsets for last corner in (x,y,z) coords */
459 t3 = 0.6f - x3 * x3 - y3 * y3 - z3 * z3;
465 t3 * t3 * grad3(perm[ii + 1 + perm[jj + 1 + perm[kk + 1]]], x3, y3,
529 float x1, y1, z1, w1, x2, y2, z2, w2, x3, y3, z3, w3, x4, y4, z4, w4; local
566 x3 = x0 - i3 + 3.0f * G4; /* Offsets for fourth corner in (x,y,z,w) coords */
614 t3 = 0.6f - x3 * x3 - y3 * y3 - z3 * z3 - w3 * w3;
622 x3, y3, z3, w3)
    [all...]
  /external/mesa3d/src/mesa/program/
prog_noise.c 346 float x1, y1, z1, x2, y2, z2, x3, y3, z3; local
421 x3 = x0 - 1.0f + 3.0f * G3;/* Offsets for last corner in (x,y,z) coords */
459 t3 = 0.6f - x3 * x3 - y3 * y3 - z3 * z3;
465 t3 * t3 * grad3(perm[ii + 1 + perm[jj + 1 + perm[kk + 1]]], x3, y3,
529 float x1, y1, z1, w1, x2, y2, z2, w2, x3, y3, z3, w3, x4, y4, z4, w4; local
566 x3 = x0 - i3 + 3.0f * G4; /* Offsets for fourth corner in (x,y,z,w) coords */
614 t3 = 0.6f - x3 * x3 - y3 * y3 - z3 * z3 - w3 * w3;
622 x3, y3, z3, w3)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/tests/pass32/
dwarf32_testhd.asm 167 .uleb128 0x3
208 .uleb128 0x3
247 .byte 0x3
616 .uleb128 0x3
625 .uleb128 0x3
633 .uleb128 0x3
636 .uleb128 0x3
647 .uleb128 0x3
662 .uleb128 0x3
675 .uleb128 0x3
    [all...]
  /external/libvpx/libvpx/vp9/common/arm/neon/
vp9_short_iht4x4_add_neon.asm 65 vaddw.s16 q15, q15, d19 ; x0 + x3
66 vmull.s16 q8, d4, d19 ; s5 = sinpi_2_9 * x3
67 vsubw.s16 q15, q15, d18 ; s7 = x0 + x3 - x2
68 vmull.s16 q9, d5, d19 ; s6 = sinpi_4_9 * x3
77 vadd.s32 q13, q10, q12 ; s0 = x0 + x3
79 vadd.s32 q14, q11, q12 ; s1 = x1 + x3
80 vsub.s32 q10, q10, q12 ; s3 = x0 + x1 - x3
  /external/chromium_org/sandbox/linux/seccomp-bpf/
sandbox_bpf_unittest.cc 805 O_ACCMODE /* 0x3 */,
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Path.java 390 * (x1,y1) and (x2,y2), and ending at (x3,y3). If no moveTo() call has been
397 * @param x3 The x-coordinate of the end point on a cubic curve
401 float x3, float y3) {
403 native_cubicTo(mNativePath, x1, y1, x2, y2, x3, y3);
412 float x3, float y3) {
414 native_rCubicTo(mNativePath, x1, y1, x2, y2, x3, y3);
726 float x2, float y2, float x3, float y3);
728 float x2, float y2, float x3, float y3);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
TwofishEngine.java 454 int x3 = BytesTo32Bits(src, srcIndex + 12) ^ gSubKeys[INPUT_WHITEN + 3]; local
464 x3 = (x3 << 1 | x3 >>> 31) ^ (t0 + 2*t1 + gSubKeys[k++]);
467 t1 = Fe32_3(x3);
474 Bits32ToBytes(x3 ^ gSubKeys[OUTPUT_WHITEN + 1], dst, dstIndex + 4);
491 int x3 = BytesTo32Bits(src, srcIndex+4) ^ gSubKeys[OUTPUT_WHITEN + 1]; local
500 t1 = Fe32_3(x3);
507 x3 ^= t0 + 2*t1 + gSubKeys[k--];
509 x3 = x3 >>>1 | x3 << 31
    [all...]
  /external/libvpx/libvpx/vp9/common/mips/dspr2/
vp9_itrans16_dspr2.c 920 int x3 = input[2]; local
    [all...]

Completed in 780 milliseconds

<<11121314151617181920>>