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

/external/swiftshader/third_party/LLVM/test/MC/MachO/
H A Dempty-dwarf-lines.s9 .globl _c ## @c
10 _c: label
H A Dindirect-symbols.s4 _c = 0 define
13 .indirect_symbol _c
116 // CHECK: ('_string', '_c')
H A Dtls.s5 .globl _c$tlv$init
7 _c$tlv$init:
11 .globl _c
12 _c: label
15 .quad _c$tlv$init
210 // CHECK: ('_string', '_c')
218 // CHECK: ('_string', '_c$tlv$init')
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
93 // CHECK: ('_string', '_c')
/external/llvm/test/MC/MachO/
H A Dindirect-symbols.s4 _c = 0 define
13 .indirect_symbol _c
111 // CHECK: Name: _c (10)
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 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)
/external/llvm/test/MC/ARM/
H A Dtls-directives.s37 .tbss _c$tlv$init, 4, 2 @ @c
39 .globl _c
40 _c: label
43 .long _c$tlv$init
/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/clang/test/CodeGenCXX/
H A Ddebug-info-codeview-display-name.cpp22 void _c(void) { function
25 // CHECK-DAG: "_c"
H A Dmangle-ms.cpp25 int _c(void) {return N::anonymous + c;} function
26 // CHECK-DAG: @"\01?_c@@YAHXZ"
27 // X64-DAG: @"\01?_c@@YAHXZ"
/external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
H A DInternalLocaleBuilder.java667 private char _c; field in class:InternalLocaleBuilder.CaseInsensitiveChar
670 _c = c;
674 return _c;
679 return AsciiUtil.toLower(_c);
690 return _c == AsciiUtil.toLower(((CaseInsensitiveChar)obj).value());
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
H A DInternalLocaleBuilder.java661 private char _c; field in class:InternalLocaleBuilder.CaseInsensitiveChar
664 _c = c;
668 return _c;
672 return AsciiUtil.toLower(_c);
682 return _c == AsciiUtil.toLower(((CaseInsensitiveChar)obj).value());
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
H A DInternalLocaleBuilder.java663 private char _c; field in class:InternalLocaleBuilder.CaseInsensitiveChar
666 _c = c;
670 return _c;
675 return AsciiUtil.toLower(_c);
686 return _c == AsciiUtil.toLower(((CaseInsensitiveChar)obj).value());
/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/ltp/testcases/open_posix_testsuite/stress/threads/pthread_mutex_lock/
H A Dstress.c136 pthread_key_t _c; /* this key will always contain a pointer to the thread's cell */ variable
192 cell_t *c = (cell_t *) pthread_getspecific(_c);
240 ret = pthread_setspecific(_c, arg);
288 ret = pthread_setspecific(_c, arg);
344 ret = pthread_setspecific(_c, arg);
605 ret = pthread_key_create(&_c, NULL);
661 ret = pthread_key_delete(_c);
/external/swiftshader/src/OpenGL/common/
H A DMatrixStack.cpp82 float _c = 1 - c; local
86 sw::Matrix rotate(c+x*x*_c, x*y*_c-z*s, x*z*_c+y*s,
87 x*y*_c+z*s, c+y*y*_c, y*z*_c-x*s,
88 x*z*_c-y*s, y*z*_c+x*s, c+z*z*_c);
[all...]
/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...]
/external/iptables/iptables/
H A Dnft.c818 struct builtin_chain *_c; local
825 _c = nft_chain_builtin_find(_t, chain);
826 if (_c != NULL) {
828 c = nft_chain_builtin_alloc(_t, _c, policy);
/external/opencv/cxcore/src/
H A Dcxmatmul.cpp1177 const uchar* _c = C->data.ptr + i*c_step0 + j*c_step1; local
1234 single_mul_func( _a, _a_step, _b, _b_step, _c, C->step, _d, _d_step,
1240 store_func( _c, C->step, _d, _d_step, D->data.ptr + i*D->step + j*elem_size,
/external/caliper/lib/
H A Djersey-core-1.11.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/jersey-module-version META- ...
/external/guice/extensions/persist/lib/
H A Dxwork-2.0.4.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/opensymphony/ com/opensymphony/xwork2/ com/opensymphony/xwork2/config/ ...
/external/google-tv-pairing-protocol/java/jar/
H A Dbcprov-jdk15-143.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY.DSA META ...
/external/guice/extensions/struts2/lib/
H A Dxwork-core-2.2.1.jarMETA-INF/ META-INF/MANIFEST.MF xwork-validator-definition-1.0.dtd xwork ...

Completed in 647 milliseconds