Searched refs:_c (Results 1 - 25 of 60) sorted by relevance

123

/external/llvm/test/MC/MachO/
H A Ddarwin-complex-difference.s10 .long _c - _d + 4
11 .long (_c - L0) - (_d - L1) // == (_c - _d) + (L1 - L0)
12 // == (_c - _d + 4)
13 _c: label
60 // CHECK: 0xC 0 2 1 X86_64_RELOC_UNSIGNED 0 _c
62 // CHECK: 0x8 0 2 1 X86_64_RELOC_UNSIGNED 0 _c
76 // CHECK: Name: _c (4)
H A Dindirect-symbols.s4 _c = 0 define
13 .indirect_symbol _c
111 // CHECK: Name: _c (10)
H A Dreloc-pcrel.s24 call _c
25 call _c - 1
26 call _c + 1
36 // CHECK-NEXT: 0x40 1 2 1 GENERIC_RELOC_VANILLA 0 _c
37 // CHECK-NEXT: 0x3B 1 2 1 GENERIC_RELOC_VANILLA 0 _c
38 // CHECK-NEXT: 0x36 1 2 1 GENERIC_RELOC_VANILLA 0 _c
H A Dtls.s5 .globl _c$tlv$init
7 _c$tlv$init:
11 .globl _c
12 _c: label
15 .quad _c$tlv$init
159 // CHECK: 0x10 0 3 1 X86_64_RELOC_UNSIGNED 0 _c$tlv$init
203 // CHECK: Name: _c (69)
213 // CHECK: Name: _c$tlv$init (13)
H A Dzerofill-4.s8 .zerofill __DATA,__bss,_c,4,4
63 // CHECK: Name: _c (4)
/external/llvm/test/MC/COFF/
H A Dcomm.s5 // _c has size 1 but align 32, the value field is the max of size and align.
6 .comm _c, 1, 5
30 // CHECK: Name: _c
/external/clang/test/CXX/over/over.oper/over.literal/
H A Dp6.cpp7 void operator "" _c(const char *); // expected-error {{must have C++ linkage}}
H A Dp2.cpp14 void operator "" _c(const char *); // expected-error {{must be in a namespace or global scope}}
16 static void operator "" _c(unsigned long long); // expected-error {{must be in a namespace or global scope}}
/external/llvm/test/MC/AsmParser/
H A Dmacros-gas.s28 .macro test3 _a _b _c
29 .ascii "\_a \_b \_c \\_c"
38 .macro test3_prime _a _b _c
39 .ascii "\_a \_b \_c"
72 .macro test8 _a, _b, _c
73 .ascii "\_a,\_b,\_c"
76 .macro test9 _a _b _c
77 .ascii "\_a \_b \_c"
H A Dmacros-darwin.s72 .macro test8 _a, _b, _c
73 .globl "\_a,\_b,\_c"
76 .macro test9 _a _b _c
77 .globl "\_a \_b \_c"
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DRecognitionException.cs98 private int _c; field in class:Antlr.Runtime.RecognitionException
156 this._c = input.LA(1);
160 this._c = input.LA(1);
171 _c = info.GetInt32("C");
190 return _c;
232 return _c;
235 _c = value;
272 info.AddValue("C", _c);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DRecognitionException.cs100 private int _c; field in class:Antlr.Runtime.RecognitionException
174 this._c = input.LA(1);
180 this._c = input.LA(1);
193 _c = info.GetInt32("C");
216 return _c;
272 return _c;
276 _c = value;
323 info.AddValue("C", _c);
/external/libdivsufsort/include/
H A Ddivsufsort_private.h154 #define STACK_PUSH(_a, _b, _c, _d)\
158 stack[ssize].c = (_c), stack[ssize++].d = (_d);\
160 #define STACK_PUSH5(_a, _b, _c, _d, _e)\
164 stack[ssize].c = (_c), stack[ssize].d = (_d), stack[ssize++].e = (_e);\
166 #define STACK_POP(_a, _b, _c, _d)\
171 (_c) = stack[ssize].c, (_d) = stack[ssize].d;\
173 #define STACK_POP5(_a, _b, _c, _d, _e)\
178 (_c) = stack[ssize].c, (_d) = stack[ssize].d, (_e) = stack[ssize].e;\
/external/libopus/celt/arm/
H A Darmcpu.h34 # define MAY_HAVE_EDSP(name) name ## _c
52 # define PRESUME_EDSP(name) name ## _c
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_tile_soa.h75 #define TILE_PIXEL(_p, _x, _y, _c) ((_p)[tile_pixel_offset(_x, _y, _c)])
/external/clang/test/CodeGenCXX/
H A Ddebug-info-codeview-display-name.cpp14 void _c(void) { function
17 // CHECK-DAG: "_c"
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
H A DbtScalar.h118 #define btLikely(_c) _c
119 #define btUnlikely(_c) _c
146 #define btLikely(_c) _c
147 #define btUnlikely(_c) _c
169 #define btLikely(_c) __builtin_expect((_c),
[all...]
/external/libvpx/libvpx/vpx_dsp/
H A Dsad.c78 unsigned int vpx_sad##m##x##n##_c(const uint8_t *src, int src_stride, \
93 void vpx_sad##m##x##n##x##k##_c(const uint8_t *src, int src_stride, \
98 sad_array[i] = vpx_sad##m##x##n##_c(src, src_stride, &ref_array[i], ref_stride); \
108 sad_array[i] = vpx_sad##m##x##n##_c(src, src_stride, ref_array[i], ref_stride); \
214 unsigned int vpx_highbd_sad##m##x##n##_c(const uint8_t *src, int src_stride, \
229 void vpx_highbd_sad##m##x##n##x##k##_c(const uint8_t *src, int src_stride, \
234 sad_array[i] = vpx_highbd_sad##m##x##n##_c(src, src_stride, &ref_array[i], \
245 sad_array[i] = vpx_highbd_sad##m##x##n##_c(src, src_stride, ref_array[i], \
H A Dvariance.c161 uint32_t vpx_variance##W##x##H##_c(const uint8_t *a, int a_stride, \
170 uint32_t vpx_sub_pixel_variance##W##x##H##_c(const uint8_t *a, int a_stride, \
182 return vpx_variance##W##x##H##_c(temp2, W, b, b_stride, sse); \
186 uint32_t vpx_sub_pixel_avg_variance##W##x##H##_c(const uint8_t *a, \
204 return vpx_variance##W##x##H##_c(temp3, W, b, b_stride, sse); \
223 uint32_t vpx_mse##W##x##H##_c(const uint8_t *a, int a_stride, \
328 uint32_t vpx_highbd_8_variance##W##x##H##_c(const uint8_t *a, \
338 uint32_t vpx_highbd_10_variance##W##x##H##_c(const uint8_t *a, \
348 uint32_t vpx_highbd_12_variance##W##x##H##_c(const uint8_t *a, \
378 uint32_t vpx_highbd_8_mse##W##x##H##_c(cons
[all...]
/external/bison/lib/
H A Dc-ctype.h234 ({ int _c = (c); \
235 (c_isgraph (_c) && ! c_isalnum (_c)); \
/external/opencv/cv/src/
H A Dcvpyrsegmentation.cpp563 Cv32suf _c; local
565 _c.f = p_cur->c; dst_image[j] = (uchar)_c.i;
995 Cv32suf _c; local
997 _c.f = p_cur->c.blue; dst_image[j*3] = (uchar)_c.i;
998 _c.f = p_cur->c.green; dst_image[j*3+1] = (uchar)_c.i;
999 _c.f = p_cur->c.red; dst_image[j*3+2] = (uchar)_c
1430 Cv32suf _c; local
1540 Cv32suf _c; local
1609 Cv32suf _c; local
1731 Cv32suf _c; local
[all...]
H A Dcvlinefit.cpp294 icvWeightHuber( float *d, int count, float *w, float _c )
297 const float c = _c <= 0 ? 1.345f : _c;
310 icvWeightFair( float *d, int count, float *w, float _c )
313 const float c = _c == 0 ? 1 / 1.3998f : 1 / _c;
322 icvWeightWelsch( float *d, int count, float *w, float _c )
325 const float c = _c == 0 ? 1 / 2.9846f : 1 / _c;
/external/opencv3/modules/imgproc/src/
H A Dlinefit.cpp272 static void weightHuber( float *d, int count, float *w, float _c )
275 const float c = _c <= 0 ? 1.345f : _c;
287 static void weightFair( float *d, int count, float *w, float _c )
290 const float c = _c == 0 ? 1 / 1.3998f : 1 / _c;
298 static void weightWelsch( float *d, int count, float *w, float _c )
301 const float c = _c == 0 ? 1 / 2.9846f : 1 / _c;
/external/libopus/celt/
H A Dentenc.c82 static void ec_enc_carry_out(ec_enc *_this,int _c){ argument
83 if(_c!=EC_SYM_MAX){
86 carry=_c>>EC_SYM_BITS;
96 _this->rem=_c&EC_SYM_MAX;
/external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
H A DInternalLocaleBuilder.java663 private char _c; field in class:InternalLocaleBuilder.CaseInsensitiveChar
666 _c = c;
670 return _c;
674 return AsciiUtil.toLower(_c);
684 return _c == AsciiUtil.toLower(((CaseInsensitiveChar)obj).value());

Completed in 1381 milliseconds

123