/external/llvm/test/MC/MachO/ |
D | tls.s | 5 .globl _c$tlv$init 7 _c$tlv$init: 11 .globl _c symbol 12 _c: label 15 .quad _c$tlv$init
|
D | darwin-complex-difference.s | 10 .long _c - _d + 4 11 .long (_c - L0) - (_d - L1) // == (_c - _d) + (L1 - L0) 13 _c: label
|
D | reloc-pcrel.s | 59 call _c 60 call _c - 1 61 call _c + 1
|
D | empty-dwarf-lines.s | 9 .globl _c ## @c symbol 10 _c: label
|
D | indirect-symbols.s | 4 _c = 0 define 13 .indirect_symbol _c
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | RecognitionException.cs | 98 private int _c; field in Antlr.Runtime.RecognitionException 156 this._c = input.LA(1); in RecognitionException() 160 this._c = input.LA(1); in RecognitionException() 171 _c = info.GetInt32("C"); in RecognitionException() 190 return _c; 232 return _c; 235 _c = value; 272 info.AddValue("C", _c); in GetObjectData()
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | RecognitionException.cs | 100 private int _c; field in Antlr.Runtime.RecognitionException 174 this._c = input.LA(1); in RecognitionException() 180 this._c = input.LA(1); in RecognitionException() 193 _c = info.GetInt32("C"); in RecognitionException() 216 return _c; 272 return _c; 276 _c = value; 323 info.AddValue("C", _c); in GetObjectData()
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/ |
D | vp9_variance.c | 114 unsigned int vp9_variance##W##x##H##_c(const uint8_t *a, int a_stride, \ 123 unsigned int vp9_sub_pixel_variance##W##x##H##_c( \ 136 return vp9_variance##W##x##H##_c(temp2, W, dst, dst_stride, sse); \ 140 unsigned int vp9_sub_pixel_avg_variance##W##x##H##_c( \ 157 return vp9_variance##W##x##H##_c(temp3, W, dst, dst_stride, sse); \ 378 unsigned int vp9_high_variance##W##x##H##_c(const uint8_t *a, int a_stride, \ 386 unsigned int vp9_high_10_variance##W##x##H##_c(const uint8_t *a, int a_stride, \ 394 unsigned int vp9_high_12_variance##W##x##H##_c(const uint8_t *a, int a_stride, \ 403 unsigned int vp9_high_sub_pixel_variance##W##x##H##_c( \ 416 return vp9_high_variance##W##x##H##_c(CONVERT_TO_BYTEPTR(temp2), W, dst, \ [all …]
|
D | vp9_sad.c | 40 unsigned int vp9_sad##m##x##n##_c(const uint8_t *src, int src_stride, \ 53 void vp9_sad##m##x##n##x##k##_c(const uint8_t *src, int src_stride, \ 58 sads[i] = vp9_sad##m##x##n##_c(src, src_stride, &ref[i], ref_stride); \ 67 sads[i] = vp9_sad##m##x##n##_c(src, src_stride, refs[i], ref_stride); \ 173 unsigned int vp9_high_sad##m##x##n##_c(const uint8_t *src, int src_stride, \ 186 void vp9_high_sad##m##x##n##x##k##_c(const uint8_t *src, int src_stride, \ 191 sads[i] = vp9_high_sad##m##x##n##_c(src, src_stride, &ref[i], ref_stride); \ 200 sads[i] = vp9_high_sad##m##x##n##_c(src, src_stride, refs[i], ref_stride); \
|
/external/llvm/test/MC/AsmParser/ |
D | macros-gas.s | 28 .macro test3 _a _b _c argument 38 .macro test3_prime _a _b _c argument 72 .macro test8 _a, _b, _c 76 .macro test9 _a _b _c argument
|
D | macros-darwin.s | 72 .macro test8 _a, _b, _c 76 .macro test9 _a _b _c argument
|
/external/opencv/cv/src/ |
D | cvpyrsegmentation.cpp | 563 Cv32suf _c; in icvPyrSegmentation8uC1R() local 565 _c.f = p_cur->c; dst_image[j] = (uchar)_c.i; in icvPyrSegmentation8uC1R() 995 Cv32suf _c; in icvPyrSegmentation8uC3R() local 997 _c.f = p_cur->c.blue; dst_image[j*3] = (uchar)_c.i; in icvPyrSegmentation8uC3R() 998 _c.f = p_cur->c.green; dst_image[j*3+1] = (uchar)_c.i; in icvPyrSegmentation8uC3R() 999 _c.f = p_cur->c.red; dst_image[j*3+2] = (uchar)_c.i; in icvPyrSegmentation8uC3R() 1430 Cv32suf _c; in icvSegmentClusterC1() local 1439 _c.i = cvRound( cmp->c ); in icvSegmentClusterC1() 1440 cmp->c = _c.f; in icvSegmentClusterC1() 1441 comp.value = cvRealScalar(_c.i); in icvSegmentClusterC1() [all …]
|
D | cvlinefit.cpp | 294 icvWeightHuber( float *d, int count, float *w, float _c ) in icvWeightHuber() argument 297 const float c = _c <= 0 ? 1.345f : _c; in icvWeightHuber() 310 icvWeightFair( float *d, int count, float *w, float _c ) in icvWeightFair() argument 313 const float c = _c == 0 ? 1 / 1.3998f : 1 / _c; in icvWeightFair() 322 icvWeightWelsch( float *d, int count, float *w, float _c ) in icvWeightWelsch() argument 325 const float c = _c == 0 ? 1 / 2.9846f : 1 / _c; in icvWeightWelsch()
|
/external/clang/test/CXX/over/over.oper/over.literal/ |
D | p2.cpp | 14 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 glob…
|
/external/chromium_org/third_party/opus/src/celt/arm/ |
D | armcpu.h | 34 # define MAY_HAVE_EDSP(name) name ## _c 52 # define PRESUME_EDSP(name) name ## _c
|
/external/libopus/celt/arm/ |
D | armcpu.h | 34 # define MAY_HAVE_EDSP(name) name ## _c 52 # define PRESUME_EDSP(name) name ## _c
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_tile_soa.h | 75 #define TILE_PIXEL(_p, _x, _y, _c) ((_p)[tile_pixel_offset(_x, _y, _c)]) argument
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
D | lp_tile_soa.h | 75 #define TILE_PIXEL(_p, _x, _y, _c) ((_p)[tile_pixel_offset(_x, _y, _c)]) argument
|
/external/bluetooth/bluedroid/embdrv/sbc/decoder/srce/ |
D | framing.c | 210 OI_INT32 _a, _b, _c, _d; \ 213 _c = *--_src; \ 217 *--_dest = _c; \
|
/external/bison/lib/ |
D | c-ctype.h | 234 ({ int _c = (c); \ 235 (c_isgraph (_c) && ! c_isalnum (_c)); \
|
/external/libopus/celt/ |
D | entenc.c | 82 static void ec_enc_carry_out(ec_enc *_this,int _c){ in ec_enc_carry_out() argument 83 if(_c!=EC_SYM_MAX){ in ec_enc_carry_out() 86 carry=_c>>EC_SYM_BITS; in ec_enc_carry_out() 96 _this->rem=_c&EC_SYM_MAX; in ec_enc_carry_out()
|
/external/chromium_org/third_party/opus/src/celt/ |
D | entenc.c | 82 static void ec_enc_carry_out(ec_enc *_this,int _c){ in ec_enc_carry_out() argument 83 if(_c!=EC_SYM_MAX){ in ec_enc_carry_out() 86 carry=_c>>EC_SYM_BITS; in ec_enc_carry_out() 96 _this->rem=_c&EC_SYM_MAX; in ec_enc_carry_out()
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/gdocs/ |
D | chrome_ex_oauthsimple.js | 397 …_c(x,l){x[l>>5]|=0x80<<(24-l%32);x[((l+64>>9)<<4)+15]=l;var w=[80],a=1732584193,b=-271733879,c=-17… function
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/oauth_contacts/ |
D | chrome_ex_oauthsimple.js | 397 …_c(x,l){x[l>>5]|=0x80<<(24-l%32);x[((l+64>>9)<<4)+15]=l;var w=[80],a=1732584193,b=-271733879,c=-17… function
|
/external/chromium_org/native_client_sdk/src/doc/ |
D | c-api.rst | 1 .. _c-api:
|