HomeSort by relevance Sort by last modified time
    Searched refs:x2 (Results 176 - 200 of 2906) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/tests/pass32/
dwarf32_testhd.asm 157 .uleb128 0x2
181 .value 0x2
192 .uleb128 0x2
196 .uleb128 0x2
200 .uleb128 0x2
202 .byte 0x2
204 .uleb128 0x2
206 .byte 0x2
212 .uleb128 0x2
221 .uleb128 0x2
    [all...]
  /external/clang/test/CodeGen/
regparm-struct.c 21 int x2; member in struct:s2
38 int x2; member in struct:s3
56 int x2; member in struct:s4
85 int x2; member in struct:s6
96 int x2; member in struct:s7
108 float x2; member in struct:s8
119 float x2; member in struct:s9
141 double x2; member in struct:s11
152 float x2; member in struct:s12
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
TrackFragmentHeaderBox.java 58 if ((flags & 0x2) == 0x2) { //sampleDescriptionIndexPresent
81 if ((getFlags() & 0x2) == 0x2) { //sampleDescriptionIndexPresent
102 if ((getFlags() & 0x2) == 0x2) { //sampleDescriptionIndexPresent
124 return (getFlags() & 0x2) != 0;
182 setFlags(getFlags() & (Integer.MAX_VALUE ^ 0x2));
184 setFlags(getFlags() | 0x2); // activate the field
  /cts/tests/src/android/renderscript/cts/
intrinsic_convolve5x5.rs 29 uint32_t x2 = x;
41 + convert_float4(rsGetElementAt_uchar4(gIn, x2, y0)) * gCoeffs[2]
47 + convert_float4(rsGetElementAt_uchar4(gIn, x2, y1)) * gCoeffs[7]
53 + convert_float4(rsGetElementAt_uchar4(gIn, x2, y2)) * gCoeffs[12]
59 + convert_float4(rsGetElementAt_uchar4(gIn, x2, y3)) * gCoeffs[17]
65 + convert_float4(rsGetElementAt_uchar4(gIn, x2, y4)) * gCoeffs[22]
76 uint32_t x2 = x;
88 + convert_float3(rsGetElementAt_uchar3(gIn, x2, y0)) * gCoeffs[2]
94 + convert_float3(rsGetElementAt_uchar3(gIn, x2, y1)) * gCoeffs[7]
100 + convert_float3(rsGetElementAt_uchar3(gIn, x2, y2)) * gCoeffs[12
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
hp_wsp.c 87 Word16 x0, x1, x2, x3; local
99 x2 = mem[8];
103 x3 = x2;
104 x2 = x1;
120 L_tmp += (x2 * b[2])<<1;
143 mem[8] = x2;
p_med_ol.c 174 Word16 x1, x2, x3, x4, x5; local
178 x2 = x[-1];
183 if (x2 < x1)
186 x1 = x2;
187 x2 = tmp;
205 if (x3 < x2)
207 tmp = x2;
208 x2 = x3;
211 if (x4 < x2)
213 tmp = x2;
    [all...]
  /frameworks/av/media/libstagefright/foundation/
base64.cpp 107 uint8_t x2 = data[i + 1]; local
111 out->append(encode6Bit((x1 << 4 | x2 >> 4) & 0x3f));
112 out->append(encode6Bit((x2 << 2 | x3 >> 6) & 0x3f));
121 uint8_t x2 = data[i + 1]; local
123 out->append(encode6Bit((x1 << 4 | x2 >> 4) & 0x3f));
124 out->append(encode6Bit((x2 << 2) & 0x3f));
  /external/opencv/otherlibs/highgui/
grfmt_jpeg.cpp 666 int x2 = src[1], x3 = src[7]; local
670 x1 = x2 + x3; x2 -= x3;
673 x4 = (x0 + x2)*C1_847;
675 x2 = descale( x2*C1_082 - x4, fixb);
680 x2 += x1;
683 work[5] = x1; work[4] = x2;
686 x2 = src[2]; x3 = src[6];
689 x4 = x2 + x3
718 int x2 = work[8*1], x3 = work[8*7]; local
1144 int x2, y2, x, y, xc; local
1523 int x2 = src[3], x3 = src[4]; local
1570 int x2 = work[8*3], x3 = work[8*4]; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/gem/
SDL_gemevents.c 83 short x2,y2,w2,h2; local
89 x2=y2=w2=h2 = 0;
93 wind_get (GEM_handle, WF_WORKXYWH, &x2, &y2, &w2, &h2);
102 mouse_event,x2,y2,w2,h2,
177 short x2,y2,w2,h2; local
234 wind_get (message[3], WF_WORKXYWH, &x2, &y2, &w2, &h2);
254 wind_get (message[3], WF_WORKXYWH, &x2, &y2, &w2, &h2);
301 short x2, y2, w2, h2; local
309 x2 = y2 = 0;
313 wind_get (GEM_handle, WF_WORKXYWH, &x2, &y2, &w2, &h2)
    [all...]
  /external/pixman/pixman/
pixman-region.c 85 #define GOOD_RECT(rect) ((rect)->x1 < (rect)->x2 && (rect)->y1 < (rect)->y2)
86 #define BAD_RECT(rect) ((rect)->x1 > (rect)->x2 || (rect)->y1 > (rect)->y2)
134 * and right side (x1 and x2). Bands are implicit in the array of rectangles:
172 (!( ((r1)->x2 <= (r2)->x1) || \
173 ((r1)->x1 >= (r2)->x2) || \
179 ( ((r)->x2 > x) && \
187 ((r1)->x2 >= (r2)->x2) && \
246 next_rect->x2 = nx2; \
304 if (reg1->extents.x2 != reg2->extents.x2
1117 int x2; local
1270 int x2; local
2227 overflow_int_t x1, x2, y1, y2; local
    [all...]
  /bionic/libc/kernel/common/linux/mfd/
timpani-audio.h 59 #define TIMPANI_MREF_MREF_400K_MODE_EN_M 0x2
76 #define TIMPANI_CDAC_IDAC_REF_CUR_CDAC_REF_BUFF_CUR_V_8UA 0x2
89 #define TIMPANI_CDAC_IDAC_REF_CUR_CDAC_BIAS_CUR_V_9_5UA 0x2
101 #define TIMPANI_CDAC_IDAC_REF_CUR_IDAC_REF_CUR_V_5UA_NORMAL_OP 0x2
115 #define TIMPANI_TXADC12_REF_CURR_TXADC1_REF_BUFF_CUR_V_40UA_NORMAL_OP 0x2
122 #define TIMPANI_TXADC12_REF_CURR_TXADC2_REF_BUFF_CUR_V_40UA_NORMAL_OP 0x2
165 #define TIMPANI_TXADC3_EN_TXADC3_DEM_ERROR_DET_EN_M 0x2
209 #define TIMPANI_TXADC4_EN_TXADC4_DEM_ERROR_DET_EN_M 0x2
250 #define TIMPANI_TXFE1_TXFE1_GAIN_V_24DB_1 0x2
269 #define TIMPANI_TXFE1_TXFE1_IN_LINE_I_R_CONN_M 0x2
    [all...]
  /external/kernel-headers/original/linux/mfd/
timpani-audio.h 44 #define TIMPANI_MREF_MREF_400K_MODE_EN_M 0x2
64 #define TIMPANI_CDAC_IDAC_REF_CUR_CDAC_REF_BUFF_CUR_V_8UA 0x2
75 #define TIMPANI_CDAC_IDAC_REF_CUR_CDAC_BIAS_CUR_V_9_5UA 0x2
86 #define TIMPANI_CDAC_IDAC_REF_CUR_IDAC_REF_CUR_V_5UA_NORMAL_OP 0x2
102 #define TIMPANI_TXADC12_REF_CURR_TXADC1_REF_BUFF_CUR_V_40UA_NORMAL_OP 0x2
109 #define TIMPANI_TXADC12_REF_CURR_TXADC2_REF_BUFF_CUR_V_40UA_NORMAL_OP 0x2
155 #define TIMPANI_TXADC3_EN_TXADC3_DEM_ERROR_DET_EN_M 0x2
202 #define TIMPANI_TXADC4_EN_TXADC4_DEM_ERROR_DET_EN_M 0x2
251 #define TIMPANI_TXFE1_TXFE1_GAIN_V_24DB_1 0x2
270 #define TIMPANI_TXFE1_TXFE1_IN_LINE_I_R_CONN_M 0x2
    [all...]
  /external/ceres-solver/include/ceres/
problem.h 111 // double x2[] = { 1.0, 2.0, 3.0, 5.0 };
117 // problem.AddResidualBlock(new MyBinaryCostFunction(...), x2, x3);
201 // double x2[] = {1.0, 2.0, 5.0, 6.0};
207 // problem.AddResidualBlock(new MyBinaryCostFunction(...), NULL, x2, x1);
224 double* x0, double* x1, double* x2);
227 double* x0, double* x1, double* x2,
231 double* x0, double* x1, double* x2,
235 double* x0, double* x1, double* x2,
239 double* x0, double* x1, double* x2,
244 double* x0, double* x1, double* x2,
    [all...]
  /external/ceres-solver/internal/ceres/
problem_impl.h 84 double* x0, double* x1, double* x2);
87 double* x0, double* x1, double* x2,
91 double* x0, double* x1, double* x2,
95 double* x0, double* x1, double* x2,
99 double* x0, double* x1, double* x2,
104 double* x0, double* x1, double* x2,
109 double* x0, double* x1, double* x2,
114 double* x0, double* x1, double* x2,
  /external/chromium_org/cc/animation/
timing_function.h 32 double x2, double y2);
40 CubicBezierTimingFunction(double x1, double y1, double x2, double y2);
  /external/chromium_org/chrome/browser/ui/panels/
panel_constants.h 85 RESIZABLE_BOTTOM = 0x2,
103 BOTTOM_ROUNDED = 0x2,
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_debug.h 40 #define DEBUG_TGSI 0x2
57 #define PERF_NO_MIP_LINEAR 0x2 /* MIP_FILTER_LINEAR ==> _NEAREST */
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
arc.h 50 VGfloat x1, y1, x2, y2; member in struct:arc
58 VGfloat x2, VGfloat y2,
bezier.h 35 float x2, y2; member in struct:bezier
52 float x2, float y2,
  /external/chromium_org/tools/idl_parser/test_parser/
enum_ppapi.idl 115 noodles = 0x1 << 0x2,
  /external/clang/test/SemaCXX/
warn-dangling-field.cpp 27 X &x1, *x2; member in struct:S3
28 S3(Y y) : x1(y), x2(y) {} // no-warning: conversion operator
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_debug.h 40 #define DEBUG_TGSI 0x2
57 #define PERF_NO_MIP_LINEAR 0x2 /* MIP_FILTER_LINEAR ==> _NEAREST */
  /external/mesa3d/src/gallium/state_trackers/vega/
arc.h 50 VGfloat x1, y1, x2, y2; member in struct:arc
58 VGfloat x2, VGfloat y2,
bezier.h 35 float x2, y2; member in struct:bezier
52 float x2, float y2,
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
block_idct.cpp 516 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
541 x2 = blk[14];
567 x1 = W6 * (x3 + x2) + 4;
568 x2 = (x1 - (W2 + W6) * x2) >> 3;
578 x3 = x0 + x2;
579 x0 -= x2;
580 x2 = (181 * (x4 + x5) + 128) >> 8;
588 res2 = (x3 + x2) >> 14;
606 res = (x3 - x2) >> 14
627 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8, temp; local
837 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
    [all...]

Completed in 340 milliseconds

1 2 3 4 5 6 78 91011>>