HomeSort by relevance Sort by last modified time
    Searched refs:ch (Results 76 - 100 of 4247) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/src/runtime/race/testdata/
mutex_test.go 17 ch := make(chan bool, 2)
22 ch <- true
28 ch <- true
30 <-ch
31 <-ch
38 ch := make(chan bool, 2)
43 ch <- true
49 ch <- true
51 <-ch
52 <-ch
    [all...]
  /external/python/cpython3/Objects/
unicodectype.c 61 /* Returns the titlecase Unicode characters corresponding to ch or just
62 ch if no titlecase mapping is known. */
64 Py_UCS4 _PyUnicode_ToTitlecase(Py_UCS4 ch)
66 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch);
70 return ch + ctype->title;
76 int _PyUnicode_IsTitlecase(Py_UCS4 ch)
78 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch);
86 int _PyUnicode_IsXidStart(Py_UCS4 ch)
88 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch);
96 int _PyUnicode_IsXidContinue(Py_UCS4 ch)
    [all...]
  /external/autotest/client/cros/cellular/
cellular_logging.py 22 ch = logging.StreamHandler(sys.stdout)
23 ch.setLevel(logging.DEBUG)
25 ch.setFormatter(formatter)
26 log.handlers = [ch]
  /external/pdfium/core/fxcrt/
fx_extension.h 28 inline bool FXSYS_islower(int32_t ch) {
29 return ch >= 'a' && ch <= 'z';
32 inline bool FXSYS_isupper(int32_t ch) {
33 return ch >= 'A' && ch <= 'Z';
36 inline int32_t FXSYS_tolower(int32_t ch) {
37 return ch < 'A' || ch > 'Z' ? ch : (ch + 0x20)
    [all...]
  /external/syslinux/utils/
bin2hex.pl 33 while ( read(STDIN,$ch,1) ) {
34 $cc = ord($ch);
  /bionic/libm/upstream-netbsd/lib/libm/complex/
ccosl.c 41 long double ch, sh; local
43 _cchshl(cimagl(z), &ch, &sh); local
44 w = cosl(creall(z)) * ch - (sinl(creall(z)) * sh) * I;
csinl.c 41 long double ch, sh; local
43 _cchshl(cimagl(z), &ch, &sh); local
44 w = sinl(creall(z)) * ch + (cosl(creall(z)) * sh) * I;
  /device/linaro/bootloader/arm-trusted-firmware/plat/arm/css/drivers/scmi/
scmi_pwr_dmn_proto.c 27 scmi_channel_t *ch = (scmi_channel_t *)p; local
29 validate_scmi_channel(ch);
31 scmi_get_channel(ch);
33 mbx_mem = (mailbox_mem_t *)(ch->info->scmi_mbx_mem);
41 scmi_send_sync_command(ch);
48 scmi_put_channel(ch);
61 scmi_channel_t *ch = (scmi_channel_t *)p; local
63 validate_scmi_channel(ch);
65 scmi_get_channel(ch);
67 mbx_mem = (mailbox_mem_t *)(ch->info->scmi_mbx_mem)
    [all...]
scmi_sys_pwr_proto.c 20 scmi_channel_t *ch = (scmi_channel_t *)p; local
22 validate_scmi_channel(ch);
24 scmi_get_channel(ch);
26 mbx_mem = (mailbox_mem_t *)(ch->info->scmi_mbx_mem);
33 scmi_send_sync_command(ch);
40 scmi_put_channel(ch);
52 scmi_channel_t *ch = (scmi_channel_t *)p; local
54 validate_scmi_channel(ch);
56 scmi_get_channel(ch);
58 mbx_mem = (mailbox_mem_t *)(ch->info->scmi_mbx_mem)
    [all...]
  /external/icu/icu4c/source/test/intltest/
nptrans.h 54 inline UBool isProhibited(UChar32 ch);
116 UBool isLabelSeparator(UChar32 ch, UErrorCode& status);
118 inline UBool isLDHChar(UChar32 ch);
128 inline UBool NamePrepTransform::isLDHChar(UChar32 ch){
130 if(ch>0x007A){
134 if( (ch==0x002D) ||
135 (0x0030 <= ch && ch <= 0x0039) ||
136 (0x0041 <= ch && ch <= 0x005A) |
    [all...]
  /external/slf4j/slf4j-ext/src/test/java/org/slf4j/cal10n_dummy/
Months.java 2 * Copyright (c) 2004-2011 QOS.ch
27 import ch.qos.cal10n.BaseName;
28 import ch.qos.cal10n.Locale;
29 import ch.qos.cal10n.LocaleData;
Production.java 2 * Copyright (c) 2004-2011 QOS.ch
27 import ch.qos.cal10n.LocaleData;
28 import ch.qos.cal10n.Locale;
29 import ch.qos.cal10n.BaseName;
  /external/syslinux/com32/lib/
memccpy.c 14 char ch; local
17 *q++ = ch = *p++;
18 if (ch == (char)c)
strcasecmp.c 12 unsigned char ch; local
18 d = toupper(ch = *c1++) - toupper(*c2++);
19 if (d || !ch)
strlcat.c 13 char ch; local
20 while ((ch = *p++)) {
22 *q++ = ch;
strlcpy.c 13 char ch; local
15 while ((ch = *p++)) {
17 *q++ = ch;
strncasecmp.c 12 unsigned char ch; local
18 d = toupper(ch = *c1++) - toupper(*c2++);
19 if (d || !ch)
strncmp.c 11 unsigned char ch; local
15 d = (int)(ch = *c1++) - (int)*c2++;
16 if (d || !ch)
  /frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
AccessibilityNodeInfoDumper.java 220 char ch; local
231 ch = cs.charAt(i);
233 if((ch >= 0x1 && ch <= 0x8) || (ch >= 0xB && ch <= 0xC) || (ch >= 0xE && ch <= 0x1F) ||
234 (ch >= 0x7F && ch <= 0x84) || (ch >= 0x86 && ch <= 0x9f) |
    [all...]
  /external/e2fsprogs/lib/support/
argv_parse.c 49 char **argv, **new_argv, *buf, ch; local
59 for (cp = in_buf; (ch = *cp); cp++) {
61 if (isspace((int) ch))
79 if (ch == '"')
82 *outcp++ = ch;
86 if (isspace((int) ch)) {
95 if (ch == '"') {
99 if (ch == '\\') {
100 ch = *++cp;
101 switch (ch) {
    [all...]
  /external/aac/libPCMutils/src/
pcm_utils.cpp 114 for (UINT ch = 0; ch < channels; ch++) {
126 for (UINT ch = 0; ch < channels; ch++) {
138 for (UINT ch = 0; ch < channels; ch++) {
148 for (UINT ch = 0; ch < channels; ch++)
    [all...]
  /external/curl/docs/examples/
cacertinmem.c 128 CURL *ch; local
132 ch = curl_easy_init();
133 rv = curl_easy_setopt(ch, CURLOPT_VERBOSE, 0L);
134 rv = curl_easy_setopt(ch, CURLOPT_HEADER, 0L);
135 rv = curl_easy_setopt(ch, CURLOPT_NOPROGRESS, 1L);
136 rv = curl_easy_setopt(ch, CURLOPT_NOSIGNAL, 1L);
137 rv = curl_easy_setopt(ch, CURLOPT_WRITEFUNCTION, *writefunction);
138 rv = curl_easy_setopt(ch, CURLOPT_WRITEDATA, stdout);
139 rv = curl_easy_setopt(ch, CURLOPT_HEADERFUNCTION, *writefunction);
140 rv = curl_easy_setopt(ch, CURLOPT_HEADERDATA, stderr)
    [all...]
  /external/freetype/src/autofit/
afblue.hin 28 #define GET_UTF8_CHAR( ch, p ) \
31 ch = (unsigned char)*p++; \
32 if ( ch >= 0x80 ) \
37 if ( ch < 0xE0 ) \
40 ch &= 0x1F; \
42 else if ( ch < 0xF0 ) \
45 ch &= 0x0F; \
50 ch &= 0x07; \
54 ch = ( ch << 6 ) | ( *p++ & 0x3F );
    [all...]
  /external/google-breakpad/src/common/android/testing/include/
wchar.h 50 static wchar_t inline wcstolower(wchar_t ch) {
51 if (ch >= L'a' && ch <= L'A')
52 ch -= L'a' - L'A';
53 return ch;
  /external/mesa3d/src/gallium/state_trackers/nine/
nine_dump.h 35 nine_dump_D3DADAPTER_IDENTIFIER9(unsigned ch, const D3DADAPTER_IDENTIFIER9 *id)
38 nine_dump_D3DCAPS9(unsigned ch, const D3DCAPS9 *caps)
41 nine_dump_D3DLIGHT9(unsigned ch, const D3DLIGHT9 *light)
44 nine_dump_D3DMATERIAL9(unsigned ch, const D3DMATERIAL9 *mat)
47 nine_dump_D3DTSS_value(unsigned ch, D3DTEXTURESTAGESTATETYPE tss, DWORD value)

Completed in 782 milliseconds

1 2 34 5 6 7 8 91011>>