Home
last modified time | relevance | path

Searched refs:ch1 (Results 1 – 25 of 87) sorted by relevance

1234

/external/ltp/testcases/kernel/syscalls/syslog/
Dsyslogtst.c40 int status, flag3, fd, ch, ch1; in main() local
44 ch1 = -1; in main()
60 ch1 = random() % 8; in main()
62 ch1 = (random() % 5) + 1; in main()
65 ch, ch1); in main()
72 ch1 = random() % 8; in main()
74 ch1 = (random() % 5) + 1; in main()
77 ch, ch1); in main()
84 ch1 = atoi(argv[2]); in main()
88 assert(!((ch == 2 || ch == 8) && ch1 == -1)); in main()
[all …]
/external/webrtc/webrtc/p2p/base/
Dport_unittest.cc574 void ConnectStartedChannels(TestChannel* ch1, TestChannel* ch2) { in ConnectStartedChannels() argument
575 ASSERT_TRUE(ch1->conn()); in ConnectStartedChannels()
576 EXPECT_TRUE_WAIT(ch1->conn()->connected(), kTimeout); // for TCP connect in ConnectStartedChannels()
577 ch1->Ping(); in ConnectStartedChannels()
581 ch2->AcceptConnection(GetCandidate(ch1->port())); in ConnectStartedChannels()
590 void StartConnectAndStopChannels(TestChannel* ch1, TestChannel* ch2) { in StartConnectAndStopChannels() argument
592 ch1->Start(); in StartConnectAndStopChannels()
595 ch1->CreateConnection(GetCandidate(ch2->port())); in StartConnectAndStopChannels()
596 ConnectStartedChannels(ch1, ch2); in StartConnectAndStopChannels()
599 ch1->Stop(); in StartConnectAndStopChannels()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DUCharacterIterator.java213 int ch1 = next(); in nextCodePoint() local
214 if (UTF16.isLeadSurrogate((char) ch1)) { in nextCodePoint()
217 return Character.toCodePoint((char) ch1, (char) ch2); in nextCodePoint()
223 return ch1; in nextCodePoint()
245 int ch1 = previous(); in previousCodePoint() local
246 if (UTF16.isTrailSurrogate((char) ch1)) { in previousCodePoint()
249 return Character.toCodePoint((char) ch2, (char) ch1); in previousCodePoint()
255 return ch1; in previousCodePoint()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DUCharacterIterator.java198 int ch1 = next(); in nextCodePoint() local
199 if (UTF16.isLeadSurrogate((char) ch1)) { in nextCodePoint()
202 return Character.toCodePoint((char) ch1, (char) ch2); in nextCodePoint()
208 return ch1; in nextCodePoint()
228 int ch1 = previous(); in previousCodePoint() local
229 if (UTF16.isTrailSurrogate((char) ch1)) { in previousCodePoint()
232 return Character.toCodePoint((char) ch2, (char) ch1); in previousCodePoint()
238 return ch1; in previousCodePoint()
/external/freetype/src/tools/ftrandom/
Dftrandom.c279 int ch1 = getc( foo ); in figurefiletype() local
287 if ( ( ch1 == 0 && ch2 == 1 && ch3 == 0 && ch4 == 0 ) || in figurefiletype()
288 ( ch1 == 'O' && ch2 == 'T' && ch3 == 'T' && ch4 == 'O' ) || in figurefiletype()
289 ( ch1 == 't' && ch2 == 'r' && ch3 == 'u' && ch4 == 'e' ) || in figurefiletype()
290 ( ch1 == 't' && ch2 == 't' && ch3 == 'c' && ch4 == 'f' ) ) in figurefiletype()
295 else if ( ch1 == 0x80 && ch2 == '\01' ) in figurefiletype()
300 else if ( ch1 == '%' && ch2 == '!' ) in figurefiletype()
309 else if ( ch1 == 1 && ch2 == 0 && ch3 == 4 ) in figurefiletype()
314 else if ( ch1 == 'S' && ch2 == 'T' && ch3 == 'A' && ch4 == 'R' ) in figurefiletype()
319 else if ( ch1 == 'P' && ch2 == 'F' && ch3 == 'R' && ch4 == '0' ) in figurefiletype()
[all …]
/external/e2fsprogs/misc/
Dutil.c57 int ch1 = *s1++, ch2 = *s2++; in strcasecmp() local
58 if (isupper (ch1)) in strcasecmp()
59 ch1 = tolower (ch1); in strcasecmp()
62 if (ch1 != ch2) in strcasecmp()
63 return ch1 - ch2; in strcasecmp()
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/munmap/
D1-1.c59 char *ch1; in main() local
99 ch1 = pa + len + 1; in main()
100 *ch1 = 'b'; in main()
110 *ch1 = 'a'; in main()
/external/tagsoup/templates/org/ccil/cowan/tagsoup/
DHTMLScanner.java266 char ch1 = (char)ch; in scan() local
268 if (theState == S_ENT && ch1 == '#') { in scan()
273 else if (theState == S_NCR && (ch1 == 'x' || ch1 == 'X')) { in scan()
278 else if (theState == S_ENT && Character.isLetterOrDigit(ch1)) { in scan()
282 else if (theState == S_NCR && Character.isDigit(ch1)) { in scan()
286 else if (theState == S_XNCR && (Character.isDigit(ch1) || "abcdefABCDEF".indexOf(ch1) != -1)) { in scan()
/external/u-boot/board/renesas/sh7757lcr/
DREADME.sh7757lcr47 write_mac [ETHERC ch0] [ETHERC ch1] [GETHERC ch0] [GETHERC ch1]
62 ETHERC ch1 = 00:00:87:6c:21:81
64 GETHERC ch1 = 00:00:87:6c:21:83
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DEncodingInfo.java187 public boolean isInEncoding(char ch1) { in isInEncoding() argument
189 int codePoint = Encodings.toCodePoint(ch1); in isInEncoding()
202 ret = m_before.isInEncoding(ch1); in isInEncoding()
215 ret = m_after.isInEncoding(ch1); in isInEncoding()
226 ret = inEncoding(ch1, m_encoding); in isInEncoding()
/external/libiio/src/
Dcontext.c213 long ch1 = channels[i - 1]->index; in reorder_channels() local
216 if (ch1 == ch2 && ch1 >= 0) { in reorder_channels()
217 ch1 = channels[i - 1]->format.shift; in reorder_channels()
221 if (ch2 >= 0 && ((ch1 > ch2) || ch1 < 0)) { in reorder_channels()
/external/ltp/testcases/kernel/syscalls/copy_file_range/
Dcopy_file_range01.c40 int ch1, ch2; in check_file_content() local
52 ch1 = getc(fp1); in check_file_content()
55 } while ((count < len) && (ch1 == ch2)); in check_file_content()
60 return !(ch1 == ch2); in check_file_content()
/external/python/cpython3/Objects/stringlib/
Dreplace.h39 STRINGLIB_CHAR ch1 = (STRINGLIB_CHAR) u1; in STRINGLIB()
41 i = FASTSEARCH(s, end - s, &ch1, 1, 0, FAST_SEARCH); in STRINGLIB()
/external/tagsoup/src/org/ccil/cowan/tagsoup/
DHTMLScanner.java487 char ch1 = (char)ch; in scan() local
489 if (theState == S_ENT && ch1 == '#') { in scan()
494 else if (theState == S_NCR && (ch1 == 'x' || ch1 == 'X')) { in scan()
499 else if (theState == S_ENT && Character.isLetterOrDigit(ch1)) { in scan()
503 else if (theState == S_NCR && Character.isDigit(ch1)) { in scan()
507 else if (theState == S_XNCR && (Character.isDigit(ch1) || "abcdefABCDEF".indexOf(ch1) != -1)) { in scan()
/external/clang/test/CodeGenObjCXX/
Dblock-var-layout.mm29 char ch1 = 'b';
44 byref_int = sh + ch+ch1+ch2 ;
57 byref_int = sh + ch+ch1+ch2 ;
72 byref_int = sh + ch+ch1+ch2 ;
/external/libjpeg-turbo/
Drdswitch.c400 char ch1, ch2; in set_sample_factors() local
405 if (sscanf(arg, "%d%c%d%c", &val1, &ch1, &val2, &ch2) < 3) in set_sample_factors()
407 if ((ch1 != 'x' && ch1 != 'X') || ch2 != ',') /* syntax check */ in set_sample_factors()
/external/clang/test/CodeGenObjC/
Dblock-var-layout.m25 char ch1 = 'b';
52 byref_int = sh + ch+ch1+ch2 ;
65 byref_int = sh + ch+ch1+ch2 ;
81 byref_int = sh + ch+ch1+ch2 ;
/external/clang/test/SemaObjC/
Dcheck-dup-decl-methods-1.m19 - (int) catm : (char)ch1; // expected-note {{previous declaration is here}}
21 - (int) catm : (char*)ch1; // expected-error {{duplicate declaration of method 'catm:'}}
/external/u-boot/doc/board/renesas/
Dsh7752evb.rst38 write_mac [GETHERC ch0] [GETHERC ch1]
55 GETHERC ch1 = 74:90:50:00:33:9f
Dsh7753evb.rst38 write_mac [GETHERC ch0] [GETHERC ch1]
55 GETHERC ch1 = 74:90:50:00:33:9f
/external/v8/src/debug/wasm/gdb-server/
Dpacket.cc267 char ch1; in GetHexString() local
268 while (GetRawChar(&ch1)) { in GetHexString()
270 if (!NibbleToUInt8(ch1, &nib1)) { in GetHexString()
/external/libusb/examples/getopt/
Dgetopt.c276 # define SWAP_FLAGS(ch1, ch2) \ argument
279 char __tmp = __getopt_nonoption_flags[ch1]; \
280 __getopt_nonoption_flags[ch1] = __getopt_nonoption_flags[ch2]; \
284 # define SWAP_FLAGS(ch1, ch2) argument
287 # define SWAP_FLAGS(ch1, ch2) argument
/external/cldr/tools/java/org/unicode/cldr/icu/
DIcuTextWriter.java48 int ch1 = arg1.charAt(i);
49 int diff = ch0 - ch1;
55 } else if (ch1 == '/') {
62 } else if (ch1 == '*') {
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
DIsoTypeReader.java25 long ch1 = readUInt8(bb); in readUInt32BE() local
29 return ((ch4 << 24) + (ch3 << 16) + (ch2 << 8) + (ch1 << 0)); in readUInt32BE()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DASN1InputStream.java408 int ch1 = defIn.read(); in getBMPCharBuffer() local
409 if (ch1 < 0) in getBMPCharBuffer()
418 buf[totalRead++] = (char)((ch1 << 8) | (ch2 & 0xff)); in getBMPCharBuffer()

1234