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

1 2 3 45 6 7 8 91011>>

  /external/valgrind/none/tests/amd64/
pcmpxstrx64w.c 31 UChar xx = 0; local
33 if (x >= '0' && x <= '9') { xx = x - '0'; }
34 else if (x >= 'A' && x <= 'F') { xx = x - 'A' + 10; }
35 else if (x >= 'a' && x <= 'f') { xx = x - 'a' + 10; }
38 assert(xx < 16);
39 xx = (xx << 4) | xx;
40 assert(xx < 256);
41 (*dst)[i] = xx;
    [all...]
  /external/clang/test/Sema/
complex-int.c 6 __complex__ unsigned xx; local
18 result = xx*yy;
22 case xx: ; // expected-error{{expression is not an integer constant expression}}
array-constraint.c 32 pfunc xx(int f[](void)) { // expected-error {{'f' declared as array of functions}} function
  /external/skia/bench/
VertBench.cpp 51 SkScalar xx = 0; local
53 pts->set(xx, yy);
55 xx += dx;
  /external/cblas/src/
cblas_chbmv.c 34 const float *xx= (float *)X, *alp= (float *)alpha, *bet = (float *)beta; local
87 *x = *xx;
88 x[1] = -xx[1];
90 xx += i;
cblas_chemv.c 33 const float *xx= (float *)X, *alp= (float *)alpha, *bet = (float *)beta; local
87 *x = *xx;
88 x[1] = -xx[1];
90 xx += i;
cblas_cher2.c 32 float *x=(float *)X, *xx=(float *)X, *y=(float *)Y, local
104 *x = *xx;
105 x[1] = -xx[1];
107 xx += i;
cblas_chpmv.c 32 const float *xx= (float *)X, *alp= (float *)alpha, *bet = (float *)beta; local
85 *x = *xx;
86 x[1] = -xx[1];
88 xx += i;
cblas_chpr2.c 32 float *x=(float *)X, *xx=(float *)X, *y=(float *)Y, local
103 *x = *xx;
104 x[1] = -xx[1];
106 xx += i;
cblas_zhbmv.c 34 const double *xx= (double *)X, *alp= (double *)alpha, *bet = (double *)beta; local
87 *x = *xx;
88 x[1] = -xx[1];
90 xx += i;
cblas_zhemv.c 33 const double *xx= (double *)X, *alp= (double *)alpha, *bet = (double *)beta; local
87 *x = *xx;
88 x[1] = -xx[1];
90 xx += i;
cblas_zher2.c 32 double *x=(double *)X, *xx=(double *)X, *y=(double *)Y, local
104 *x = *xx;
105 x[1] = -xx[1];
107 xx += i;
cblas_zhpmv.c 32 const double *xx= (double *)X, *alp= (double *)alpha, *bet = (double *)beta; local
85 *x = *xx;
86 x[1] = -xx[1];
88 xx += i;
cblas_zhpr2.c 32 double *x=(double *)X, *xx=(double *)X, *y=(double *)Y, local
90 *x = *xx;
91 x[1] = -xx[1];
93 xx += i;
  /external/clang/test/Index/
load-exprs.c 7 void *xx = ptr ? : &x; local
50 // CHECK: load-exprs.c:7:9: VarDecl=xx:7:9 (Definition) Extent=[7:3 - 7:24]
  /external/libvpx/libvpx/vp8/common/x86/
loopfilter_sse2.asm 652 movq xmm4, [rsi] ; xx xx xx xx xx xx xx xx 07 06 05 04 03 02 01 00
653 movq xmm1, [rdi] ; xx xx xx xx xx xx xx xx 17 16 15 14 13 12 11 1
    [all...]
  /system/nfc/src/nfa/ce/
nfa_ce_main.c 103 uint8_t xx; local
111 for (xx = 0, p_info = nfa_ce_cb.listen_info; xx < NFA_CE_LISTEN_INFO_MAX;
112 xx++, p_info++) {
  /external/freetype/src/base/
ftcalc.c 663 FT_Fixed xx, xy, yx, yy; local
669 xx = FT_MulFix( a->xx, b->xx ) + FT_MulFix( a->xy, b->yx );
670 xy = FT_MulFix( a->xx, b->xy ) + FT_MulFix( a->xy, b->yy );
671 yx = FT_MulFix( a->yx, b->xx ) + FT_MulFix( a->yy, b->yx );
674 b->xx = xx; b->xy = xy;
684 FT_Pos delta, xx, yy; local
691 delta = FT_MulFix( matrix->xx, matrix->yy )
717 FT_Fixed xx, xy, yx, yy; local
    [all...]
  /external/pdfium/third_party/freetype/src/base/
ftcalc.c 663 FT_Fixed xx, xy, yx, yy; local
669 xx = FT_MulFix( a->xx, b->xx ) + FT_MulFix( a->xy, b->yx );
670 xy = FT_MulFix( a->xx, b->xy ) + FT_MulFix( a->xy, b->yy );
671 yx = FT_MulFix( a->yx, b->xx ) + FT_MulFix( a->yy, b->yx );
674 b->xx = xx; b->xy = xy;
684 FT_Pos delta, xx, yy; local
691 delta = FT_MulFix( matrix->xx, matrix->yy )
717 FT_Fixed xx, xy, yx, yy; local
    [all...]
  /external/valgrind/memcheck/tests/amd64/
xsave-avx.stderr.exp 6 32 xx xx aa aa aa aa aa aa aa aa aa aa aa aa aa aa
7 48 xx xx aa aa aa aa aa aa aa aa aa aa aa aa aa aa
8 64 xx xx aa aa aa aa aa aa aa aa aa aa aa aa aa aa
9 80 xx xx aa aa aa aa aa aa aa aa aa aa aa aa aa aa
10 96 xx xx aa aa aa aa aa aa aa aa aa aa aa aa aa aa
    [all...]
  /system/bt/stack/l2cap/
l2c_link.cc 63 int xx; local
81 for (xx = 0, p_lcb_cur = &l2cb.lcb_pool[0]; xx < MAX_L2CAP_LINKS;
82 xx++, p_lcb_cur++) {
411 int xx; local
412 for (xx = 0; xx < L2CAP_NUM_FIXED_CHNLS; xx++) {
413 if (p_lcb->p_fixed_ccbs[xx] &&
414 p_lcb->p_fixed_ccbs[xx] != p_lcb->p_pending_ccb)
782 uint8_t xx; local
853 int xx; local
956 int xx; local
1201 uint8_t num_handles, xx; local
    [all...]
  /system/nfc/src/nfa/ee/
nfa_ee_api.c 89 int xx, ret = nfa_ee_cb.cur_ee; local
109 for (xx = 0; (xx < ret) && (num_ret < max_ret); xx++, p_cb++) {
110 NFA_TRACE_DEBUG4("xx:%d max_ret:%d, num_ret:%d ee_status:0x%x", xx, max_ret,
181 int xx; local
183 for (xx = 0; xx < NFA_EE_MAX_CBACKS; xx++)
225 uint32_t xx; local
    [all...]
  /external/toybox/toys/posix/
sort.c 187 char *xx,*yy; local
188 double dx = strtod(x,&xx), dy = strtod(y,&yy);
193 if (x==xx) return y==yy ? 0 : -1;
213 char *xx,*yy; local
215 xx = strptime(x,"%b",&thyme);
218 if (!xx) return !yy ? 0 : -1;
240 char *x, *y, *xx = *(char **)xarg, *yy = *(char **)yarg; local
251 x = get_key_data(xx, key, flags);
258 if (x != xx) free(x);
263 } else retval = compare_values(flags, xx, yy)
    [all...]
  /art/test/623-checker-loop-regressions/src/
Main.java 275 static void reduc(int[] xx, int[] yy) {
278 xx[i0] -= (++yy[i1]);
409 int[] xx = new int[2]; local
411 reduc(xx, yy);
412 expectEquals(-469, xx[0]);
413 expectEquals(-938, xx[1]);
434 xx[0] = 10;
436 arrayInTripCount(xx, bt, 20);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_shlex.py 61 foo\ xx|foo|\|xx|
124 foo\ xx|foo xx|
125 foo\ x\x|foo xx|
126 foo\ x\x\"|foo xx"|

Completed in 3033 milliseconds

1 2 3 45 6 7 8 91011>>