Searched defs:xx (Results 1 - 25 of 247) sorted by relevance

12345678910

/external/chromium_org/third_party/opus/src/silk/fixed/
H A Dregularize_correlations_FIX.c37 opus_int32 *xx, /* I/O Correlation values */
46 xx[ 0 ] += noise;
35 silk_regularize_correlations_FIX( opus_int32 *XX, opus_int32 *xx, opus_int32 noise, opus_int D ) argument
/external/chromium_org/third_party/opus/src/silk/float/
H A Dregularize_correlations_FLP.c37 silk_float *xx, /* I/O Correlation values */
47 xx[ 0 ] += noise;
35 silk_regularize_correlations_FLP( silk_float *XX, silk_float *xx, const silk_float noise, const opus_int D ) argument
/external/libopus/silk/fixed/
H A Dregularize_correlations_FIX.c37 opus_int32 *xx, /* I/O Correlation values */
46 xx[ 0 ] += noise;
35 silk_regularize_correlations_FIX( opus_int32 *XX, opus_int32 *xx, opus_int32 noise, opus_int D ) argument
/external/libopus/silk/float/
H A Dregularize_correlations_FLP.c37 silk_float *xx, /* I/O Correlation values */
47 xx[ 0 ] += noise;
35 silk_regularize_correlations_FLP( silk_float *XX, silk_float *xx, const silk_float noise, const opus_int D ) argument
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DQuadraticParameterization_TestUtility.cpp8 double xx = q.x2() * point.x * point.x; local
14 double sum = xx + xy + yy + x + y + c;
/external/clang/test/Parser/
H A Dbuiltin_types_compatible.c35 struct xx { int a; } x, y; struct
38 c = __builtin_choose_expr(0, b, x); // expected-error{{assigning to 'int' from incompatible type 'struct xx'}}
H A Dtypeof.c17 int xx; local
/external/skia/experimental/Intersection/
H A DQuadraticParameterization_TestUtility.cpp8 double xx = q.x2() * point.x * point.x; local
14 double sum = xx + xy + yy + x + y + c;
/external/valgrind/main/VEX/test/
H A Dfsave.c45 printf("xx ");
57 int xx = argc > 1; local
65 show_fpustate( buf, xx );
H A Dfrstor.c56 printf("xx ");
68 int xx = argc > 1; local
74 show_fpustate( (unsigned char*)buf1, xx );
79 show_fpustate( (unsigned char*)buf2, xx );
/external/valgrind/main/helgrind/tests/
H A Dtc04_free_lock.c17 XX* xx = malloc(sizeof(XX)); local
18 assert(xx);
20 pthread_mutex_init( &xx->lock, NULL );
22 pthread_mutex_lock( &xx->lock );
24 free(xx);
/external/clang/test/Analysis/diagnostics/
H A Dundef-value-param.c20 int xx; //expected-note {{'xx' declared without an initial value}} local
21 int *y = &xx;
26 return xx+3; //expected-warning{{The left operand of '+' is a garbage value}}
96 // CHECK-NEXT: <string>&apos;xx&apos; declared without an initial value</string>
98 // CHECK-NEXT: <string>&apos;xx&apos; declared without an initial value</string>
/external/clang/test/SemaCXX/
H A Dtype-definition-in-specifier.cpp42 static int xx; member in struct:pr19018a
50 void func8(struct { int qq() { return xx; }; } x); // expected-error{{cannot be defined in a parameter type}}
51 void func9(struct t19018 { int qq() { return xx; }; } x); // expected-error{{cannot be defined in a parameter type}}
H A Dtrailing-return-0x.cpp70 X<int> xx; variable
71 only<int> p2 = xx.f(0L);
72 only<double> p3 = xx.g(0L, 1.0);
73 only<double> p4 = xx.get_nested<double>().h(0L, 1.0, 3.14f);
/external/compiler-rt/test/msan/
H A Dchained_origin_memcpy.cc22 int xx[10000]; variable
28 xx[idx] = a; xx[idx + 10] = b;
38 memcpy(&yy, &xx, sizeof(xx));
/external/srec/srec/cfront/
H A Dsh_down.h35 static PINLINE int fixed_point_convert(float xx, int shift);
75 static PINLINE int fixed_point_convert(float xx, int shift) argument
80 scaled_val = xx * (0x01 << shift);
/external/valgrind/main/none/tests/amd64/
H A Dbug132918.c14 double xx = x; local
28 : /*in*/ "m" (f64), "m" (xx), "m" (yy)
51 do_fprem(&r, 12.3*sin(theta), cos(theta)); show("xx", &r);
/external/bluetooth/bluedroid/stack/avrc/
H A Davrc_pars_ct.c48 UINT8 xx, yy; local
H A Davrc_pars_tg.c47 UINT8 xx, yy; local
105 for (xx=0, yy=0; xx< p_result->get_cur_app_val.num_attr; xx++)
126 for (xx=0; ((xx< p_result->set_app_val.num_val) && (buf_len > size_needed)); xx++)
128 p_app_set[xx].attr_id = *p++;
129 p_app_set[xx].attr_val = *p++;
130 if (!avrc_is_valid_player_attrib_value(p_app_set[xx]
[all...]
/external/chromium_org/third_party/skia/src/opts/
H A DSkBitmapProcState_opts_arm.cpp51 const uint16_t* SK_RESTRICT xx = (const uint16_t*)(xy + 1); local
57 "ldmia %[xx]!, {r5, r7, r9, r11} \n\t" // load ptrs to pixels 0-7
98 : [xx] "+r" (xx), [count8] "+r" (count8), [colors] "+r" (colors)
104 src = srcAddr[*xx++]; *colors++ = table[src];
137 const uint16_t* xx = (const uint16_t*)(xy + 1); local
143 "ldmia %[xx]!, {r5, r7, r9, r11} \n\t" // load ptrs to pixels 0-7
175 "ldrh r4, [%[xx]], #2 \n\t" // load pixel ptr
182 : [xx] "+r" (xx), [coun
[all...]
/external/chromium_org/third_party/skia/tests/
H A DPathOpsQuadParameterizationTest.cpp13 double xx = q.x2() * point.fX * point.fX; local
19 double sum = xx + xy + yy + x + y + c;
/external/clang/test/FixIt/
H A Dfixit-function-call.cpp61 int xx; member in struct:A
/external/clang/test/Index/
H A Dload-exprs.c7 void *xx = ptr ? : &x; local
50 // CHECK: load-exprs.c:7:9: VarDecl=xx:7:9 (Definition) Extent=[7:3 - 7:24]
/external/clang/test/Sema/
H A Dbitfield.c16 float xx : 4; // expected-error {{bit-field 'xx' has non-integral type}} member in struct:a
/external/libnfc-nci/src/nfa/ce/
H A Dnfa_ce_main.c108 UINT8 xx; local
116 for (xx = 0, p_info = nfa_ce_cb.listen_info; xx < NFA_CE_LISTEN_INFO_MAX; xx++, p_info++)

Completed in 4340 milliseconds

12345678910