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

123

/external/google-breakpad/src/testing/gtest/test/
H A Dgtest-tuple_test.cc110 const char ch2 = 'b'; local
111 const FooTuple c(j, ch2);
/external/googletest/googletest/test/
H A Dgtest-tuple_test.cc110 const char ch2 = 'b'; local
111 const FooTuple c(j, ch2);
/external/icu/icu4c/source/common/
H A Dustrtrns.cpp163 UChar ch2; local
214 } else if(U16_IS_SURROGATE_LEAD(ch) && src < srcLimit && U16_IS_TRAIL(ch2 = *src)) {
216 ch = U16_GET_SUPPLEMENTARY(ch, ch2);
991 uint32_t ch=0,ch2=0;
1045 if(U16_IS_SURROGATE_LEAD(ch) && U16_IS_TRAIL(ch2=*pSrc)) {
1047 ch=U16_GET_SUPPLEMENTARY(ch, ch2);
1074 } else if(U16_IS_SURROGATE_LEAD(ch) && U16_IS_TRAIL(ch2=*pSrc)) {
1132 if(U16_IS_SURROGATE_LEAD(ch) && U16_IS_TRAIL(ch2=*pSrc)) {
1134 ch=U16_GET_SUPPLEMENTARY(ch, ch2);
1187 if(U16_IS_SURROGATE_LEAD(ch) && pSrc<pSrcLimit && U16_IS_TRAIL(ch2
[all...]
H A Ducnv_u32.c220 UChar32 ch, ch2; local
256 ch2 = *mySource;
257 if (U_IS_TRAIL(ch2)) {
258 ch = ((ch - SURROGATE_HIGH_START) << HALF_SHIFT) + ch2 + SURROGATE_LOW_BASE;
322 UChar32 ch, ch2; local
360 ch2 = *mySource;
361 if (U_IS_TRAIL(ch2)) {
362 ch = ((ch - SURROGATE_HIGH_START) << HALF_SHIFT) + ch2 + SURROGATE_LOW_BASE;
698 UChar32 ch, ch2; local
738 ch2
808 UChar32 ch, ch2; local
[all...]
H A Ducnv_u8.c111 uint32_t ch, ch2 = 0; local
146 toUBytes[i] = (char) (ch2 = *mySource);
147 if (!U8_IS_TRAIL(ch2))
151 ch = (ch << 6) + ch2;
241 uint32_t ch, ch2 = 0; local
275 toUBytes[i] = (char) (ch2 = *mySource);
276 if (!U8_IS_TRAIL(ch2))
280 ch = (ch << 6) + ch2;
/external/libjpeg-turbo/
H A Drdswitch.c400 char ch1, ch2; local
404 ch2 = ','; /* if not set by sscanf, will be ',' */
405 if (sscanf(arg, "%d%c%d%c", &val1, &ch1, &val2, &ch2) < 3)
407 if ((ch1 != 'x' && ch1 != 'X') || ch2 != ',') /* syntax check */
/external/protobuf/gtest/test/
H A Dgtest-tuple_test.cc110 const char ch2 = 'b'; local
111 const FooTuple c(j, ch2);
/external/v8/testing/gtest/test/
H A Dgtest-tuple_test.cc110 const char ch2 = 'b'; local
111 const FooTuple c(j, ch2);
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/
H A Dgtest-tuple_test.cc110 const char ch2 = 'b'; local
111 const FooTuple c(j, ch2);
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3convertutf.c107 UTF32 ch, ch2; local
115 ch2 = *source;
117 if (ch2 >= UNI_SUR_LOW_START && ch2 <= UNI_SUR_LOW_END) {
119 + (ch2 - UNI_SUR_LOW_START) + halfBase;
149 ANTLR3_FPRINTF(stderr, "ConvertUTF16toUTF32 illegal seq 0x%04x,%04x\n", ch, ch2);
222 UTF32 ch2 = *source; local
224 if (ch2 >= UNI_SUR_LOW_START && ch2 <= UNI_SUR_LOW_END) {
226 + (ch2
[all...]
H A Dantlr3inputstream.c782 UTF32 ch2; local
824 ch2 = *((UTF16*)input->nextChar);
828 if (ch2 >= UNI_SUR_LOW_START && ch2 <= UNI_SUR_LOW_END)
861 UTF32 ch2; local
893 ch2 = *nextChar;
897 if (ch2 >= UNI_SUR_LOW_START && ch2 <= UNI_SUR_LOW_END)
932 ch2 = *(nextChar-1);
933 if (ch2 >
1064 UTF32 ch2; local
1141 UTF32 ch2; local
1283 UTF32 ch2; local
1362 UTF32 ch2; local
[all...]
/external/google-breakpad/src/common/
H A Dconvert_UTF.c135 UTF32 ch, ch2; local
143 ch2 = *source;
145 if (ch2 >= UNI_SUR_LOW_START && ch2 <= UNI_SUR_LOW_END) {
147 + (ch2 - UNI_SUR_LOW_START) + halfBase;
177 fprintf(stderr, "ConvertUTF16toUTF32 illegal seq 0x%04x,%04x\n", ch, ch2);
249 UTF32 ch2 = *source; local
251 if (ch2 >= UNI_SUR_LOW_START && ch2 <= UNI_SUR_LOW_END) {
253 + (ch2
[all...]
/external/google-breakpad/src/testing/test/
H A Dgmock_link_test.h297 char ch2 = 'y'; local
299 EXPECT_CALL(mock, VoidFromString(_)).WillOnce(SetArrayArgument<0>(&ch2,
300 &ch2 + 1));
/external/googletest/googlemock/test/
H A Dgmock_link_test.h297 char ch2 = 'y'; local
299 EXPECT_CALL(mock, VoidFromString(_)).WillOnce(SetArrayArgument<0>(&ch2,
300 &ch2 + 1));
/external/unicode/
H A DConvertUTF.c116 UTF32 ch, ch2; local
124 ch2 = *source;
126 if (ch2 >= UNI_SUR_LOW_START && ch2 <= UNI_SUR_LOW_END) {
128 + (ch2 - UNI_SUR_LOW_START) + halfBase;
158 fprintf(stderr, "ConvertUTF16toUTF32 illegal seq 0x%04x,%04x\n", ch, ch2);
231 UTF32 ch2 = *source; local
233 if (ch2 >= UNI_SUR_LOW_START && ch2 <= UNI_SUR_LOW_END) {
235 + (ch2
[all...]
/external/v8/testing/gmock/test/
H A Dgmock_link_test.h297 char ch2 = 'y'; local
299 EXPECT_CALL(mock, VoidFromString(_)).WillOnce(SetArrayArgument<0>(&ch2,
300 &ch2 + 1));
/external/e2fsprogs/misc/
H A Dutil.c57 int ch1 = *s1++, ch2 = *s2++; local
60 if (isupper (ch2))
61 ch2 = tolower (ch2);
62 if (ch1 != ch2)
63 return ch1 - ch2;
/external/llvm/lib/Support/
H A DConvertUTF.c173 UTF32 ch, ch2; local
181 ch2 = *source;
183 if (ch2 >= UNI_SUR_LOW_START && ch2 <= UNI_SUR_LOW_END) {
185 + (ch2 - UNI_SUR_LOW_START) + halfBase;
215 fprintf(stderr, "ConvertUTF16toUTF32 illegal seq 0x%04x,%04x\n", ch, ch2);
238 UTF32 ch2 = *source; local
240 if (ch2 >= UNI_SUR_LOW_START && ch2 <= UNI_SUR_LOW_END) {
242 + (ch2
[all...]
/external/v8/src/inspector/
H A Dstring-16.cc101 UChar32 ch2 = static_cast<uint16_t>(*source); local
103 if (ch2 >= 0xDC00 && ch2 <= 0xDFFF) {
104 ch = ((ch - 0xD800) << 10) + (ch2 - 0xDC00) + 0x0010000;
/external/libvorbis/lib/
H A Dsmallft.c272 float *c2,float *ch,float *ch2,float *wa){
293 for(ik=0;ik<idl1;ik++)ch2[ik]=c2[ik];
391 for(ik=0;ik<idl1;ik++)c2[ik]=ch2[ik];
425 ch2[t4++]=c2[ik]+ar1*c2[t7++];
426 ch2[t5++]=ai1*c2[t6++];
449 ch2[t6++]+=ar2*c2[t8++];
450 ch2[t7++]+=ai2*c2[t9++];
459 for(ik=0;ik<idl1;ik++)ch2[ik]+=c2[t2++];
841 float *c2,float *ch,float *ch2,float *wa){
997 c2[t4++]=ch2[t
271 dradfg(int ido,int ip,int l1,int idl1,float *cc,float *c1, float *c2,float *ch,float *ch2,float *wa) argument
840 dradbg(int ido,int ip,int l1,int idl1,float *cc,float *c1, float *c2,float *ch,float *ch2,float *wa) argument
[all...]
H A Dvorbisfile.c2035 int ch1, int ch2,
2047 for(j=0;j<ch1 && j<ch2;j++){
2058 for(;j<ch2;j++){
2201 int n1,n2,ch1,ch2,hs; local
2230 ch2=vi->channels;
2238 _ov_splice(pcm,lappcm,n1,n2,ch1,ch2,w1,w2);
2262 int n1,n2,ch1,ch2,hs; local
2291 ch2=vi->channels;
2299 _ov_splice(pcm,lappcm,n1,n2,ch1,ch2,w1,w2);
2033 _ov_splice(float **pcm,float **lappcm, int n1, int n2, int ch1, int ch2, float *w1, float *w2) argument
/external/speex/libspeex/
H A Dsmallft.c274 float *c2,float *ch,float *ch2,float *wa){
295 for(ik=0;ik<idl1;ik++)ch2[ik]=c2[ik];
393 for(ik=0;ik<idl1;ik++)c2[ik]=ch2[ik];
427 ch2[t4++]=c2[ik]+ar1*c2[t7++];
428 ch2[t5++]=ai1*c2[t6++];
451 ch2[t6++]+=ar2*c2[t8++];
452 ch2[t7++]+=ai2*c2[t9++];
461 for(ik=0;ik<idl1;ik++)ch2[ik]+=c2[t2++];
843 float *c2,float *ch,float *ch2,float *wa){
999 c2[t4++]=ch2[t
273 dradfg(int ido,int ip,int l1,int idl1,float *cc,float *c1, float *c2,float *ch,float *ch2,float *wa) argument
842 dradbg(int ido,int ip,int l1,int idl1,float *cc,float *c1, float *c2,float *ch,float *ch2,float *wa) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_exec.h378 boolean ch0, boolean ch1, boolean ch2, boolean ch3)
383 mask[2] = ch2 ? ~0 : 0;
377 tgsi_set_exec_mask(struct tgsi_exec_machine *mach, boolean ch0, boolean ch1, boolean ch2, boolean ch3) argument
/external/pdfium/core/fxcrt/
H A Dfx_extension.cpp513 FX_CHAR ch1 = 0, ch2 = 0; local
516 ch2 = (FX_CHAR)FXSYS_tolower(*s2++);
517 if (ch1 != ch2) {
521 return ch1 - ch2;
/external/fio/
H A Doptions.c3805 char *ch1, *ch2, *env; local
3819 ch2 = strchr(inptr, '}');
3820 if (ch2 && inptr+1 < ch2) {
3822 inptr = ch2+1;
3823 *ch2 = '\0';

Completed in 1012 milliseconds

123