HomeSort by: relevance | last modified time | path
    Searched refs:CH (Results 1 - 25 of 34) sorted by relevancy

1 2

  /src/external/lgpl3/mpfr/dist/src/
get_d64.c 252 #define CH(d) (d - '0')
254 G = (3 << 11) | ((exp & 768) << 1) | ((CH(m[0]) & 1) << 8);
256 G = ((exp & 768) << 3) | (CH(m[0]) << 8);
259 d1 = T[100 * CH(m[1]) + 10 * CH(m[2]) + CH(m[3])]; /* 10-bit encoding */
260 d2 = T[100 * CH(m[4]) + 10 * CH(m[5]) + CH(m[6])]; /* 10-bit encoding */
261 d3 = T[100 * CH(m[7]) + 10 * CH(m[8]) + CH(m[9])]; /* 10-bit encoding *
    [all...]
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/
srp-client.c 1222 #define CH if (towire.error) { line = __LINE__; goto fail; }
1256 dns_full_name_to_wire(&p_zone_name, &towire, zone_name); CH;
1257 dns_u16_to_wire(&towire, dns_rrtype_soa); CH;
1258 dns_u16_to_wire(&towire, dns_qclass_in); CH;
1275 conflict_hostname = conflict_print(client, &towire, &chosen_hostname, client->hostname); CH;
1276 dns_name_to_wire(&p_host_name, &towire, chosen_hostname); CH;
1277 dns_pointer_to_wire(&p_host_name, &towire, &p_zone_name); CH;
1278 dns_u16_to_wire(&towire, dns_rrtype_any); CH;
1279 dns_u16_to_wire(&towire, dns_qclass_any); CH;
1280 dns_ttl_to_wire(&towire, 0); CH;
    [all...]
  /src/games/rogue/
play.c 65 short ch; local
81 ch = rgetchar();
85 CH:
86 switch(ch) {
110 (void)one_move_rogue(ch, 1);
128 multiple_move_rogue(ch);
157 ch = rgetchar();
158 } while (ch == '\020');
176 inv_armor_weapon(ch == ')');
237 count = (10 * count) + (ch - '0')
    [all...]
room.c 374 short i, j, ch, och; local
383 if (((ch = mvinch(i, j)) == ' ') ||
384 ((ch >= 'A') && (ch <= 'Z')) || (s & (TRAP | HIDDEN))) {
385 och = ch;
388 ch = '-';
390 ch = '|';
392 ch = '+';
394 ch = '^';
396 ch = '%'
522 short ch; local
    [all...]
  /src/external/bsd/pcc/dist/pcc/arch/i86/
macdefs.h 166 #define CH 015
202 { CL, CH, AXCX, DXCX, CXBX, CXSI, CXDI, -1 },\
222 { AX, AL, AH, CX, CL, CH, AXDX, AXBX, AXSI, /* axcx */\
230 { DX, DL, DH, CX, CL, CH, AXDX, AXCX, DXBX, /* dxcx */\
238 { CX, CL, CH, BX, BL, BH, AXCX, DXCX, CXSI, /* cxbx */\
240 { CX, CL, CH, SI, AXCX, DXCX, CXBX, CXDI, /* cxsi */\
242 { CX, CL, CH, DI, AXCX, DXCX, CXBX, CXSI, /* cxdi */\
  /src/external/bsd/pcc/dist/pcc/arch/i386/
macdefs.h 183 #define CH 015
219 { CL, CH, EAXECX, EDXECX, ECXEBX, ECXESI, ECXEDI, -1 },\
239 { EAX, AL, AH, ECX, CL, CH, EAXEDX, EAXEBX, EAXESI, /* eaxecx */\
247 { EDX, DL, DH, ECX, CL, CH, EAXEDX, EAXECX, EDXEBX, /* edxecx */\
255 { ECX, CL, CH, EBX, BL, BH, EAXECX, EDXECX, ECXESI, /* ecxebx */\
257 { ECX, CL, CH, ESI, EAXECX, EDXECX, ECXEBX, ECXEDI, /* ecxesi */\
259 { ECX, CL, CH, EDI, EAXECX, EDXECX, ECXEBX, ECXESI, /* ecxedi */\
  /src/sys/arch/i386/include/
bioscall.h 75 #define CH r_cx.biosreg_quarter[BIOSREG_HI]
  /src/external/apache2/llvm/dist/llvm/lib/Demangle/
MicrosoftDemangle.cpp 526 Demangler::translateIntrinsicFunctionCode(char CH,
529 if (!(CH >= '0' && CH <= '9') && !(CH >= 'A' && CH <= 'Z')) {
653 int Index = (CH >= '0' && CH <= '9') ? (CH - '0') : (CH - 'A' + 10);
674 switch (char CH = MangledName.popFront())
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypesGeneric.cpp 510 SDValue LL, LH, RL, RH, CL, CH;
516 CL = CH = Cond;
519 std::tie(CL, CH) = DAG.SplitVector(Res, dl);
524 GetSplitVector(Cond, CL, CH);
535 std::tie(CL, CH) = DAG.SplitVector(Cond, dl);
537 SplitVecRes_SETCC(Cond.getNode(), CL, CH);
539 std::tie(CL, CH) = DAG.SplitVector(Cond, dl);
543 Hi = DAG.getNode(N->getOpcode(), dl, LH.getValueType(), CH, LH, RH);
  /src/external/apache2/mDNSResponder/dist/mDNSShared/dns_objects/utilities/
domain_name_labels.c 393 #define _IS_PRINTABLE_ASCII(CH) (((CH) >= 32) && ((CH) <= 126))
419 const char ch = (char) *src; local
420 if ((ch == '.') || (ch == '\\') || (ch == ' ')) {
423 *dst++ = ch;
479 int ch; local
483 while (*src != 0 && ((ch = *src++) != '.'))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/
X86MCTargetDesc.cpp 92 {codeview::RegisterId::CH, X86::CH},
631 case X86::CH: case X86::CL: case X86::CX: case X86::ECX: case X86::RCX:
632 return X86::CH;
643 case X86::CH: case X86::CL: case X86::CX: case X86::ECX: case X86::RCX:
680 case X86::CH: case X86::CL: case X86::CX: case X86::ECX: case X86::RCX:
716 case X86::CH: case X86::CL: case X86::CX: case X86::ECX: case X86::RCX:
752 case X86::CH: case X86::CL: case X86::CX: case X86::ECX: case X86::RCX:
X86MCCodeEmitter.cpp 1227 if (Reg == X86::AH || Reg == X86::BH || Reg == X86::CH ||
  /src/external/gpl2/xcvs/dist/contrib/
log_accum.in 424 open (CH, "<$CHANGED_FILE.$i.$id.$cvs_user") or last;
426 while (my $change = <CH>)
449 close (CH);
  /src/lib/libc/stdlib/
strfmon.c 67 #define PRINT(CH) do { \
70 *dst++ = CH; \
  /src/sys/dev/ieee1394/
fwohci.c 301 #define OHCI_ITOFF(CH) (0x200 + 0x10 * (CH))
302 #define OHCI_ITCTL(CH) (OHCI_ITOFF(CH))
303 #define OHCI_ITCTLCLR(CH) (OHCI_ITOFF(CH) + 0x04)
304 #define OHCI_ITCMD(CH) (OHCI_ITOFF(CH) + 0x0c)
306 #define OHCI_IROFF(CH) (0x400 + 0x20 * (CH))
1560 int packets = 0, ch, err = 0; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/loongarch/
loongarch-opts.cc 92 #define APPEND1(CH) obstack_1grow(&msg_obstack, CH);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
MicrosoftDemangle.h 211 translateIntrinsicFunctionCode(char CH, FunctionIdentifierCodeGroup Group);
  /src/external/apache2/llvm/dist/llvm/lib/Support/
SHA256.cpp 38 #define CH(x, y, z) (((x) & (y)) ^ (~(x) & (z)))
49 H += SIGMA_1(E) + CH(E, F, G) + M1 + k; \
  /src/external/gpl3/gcc/dist/gcc/config/loongarch/
loongarch-opts.cc 87 #define APPEND1(CH) obstack_1grow(&msg_obstack, CH);
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.h 81 ENTRY(CH) \
  /src/external/mpl/bind/dist/bin/tests/system/enginepkcs11/
tests.sh 415 dig_with_opts @10.53.0.1 version.bind. CH TXT >dig.out.pk11_numbits || ret=1
  /src/external/apache2/llvm/dist/clang/lib/AST/
Decl.cpp 4915 MutableArrayRef<NamedDecl *> CH)
4916 : ValueDecl(IndirectField, DC, L, N, T), Chaining(CH.data()),
4917 ChainingSize(CH.size()) {
4927 llvm::MutableArrayRef<NamedDecl *> CH) {
4928 return new (C, DC) IndirectFieldDecl(C, DC, L, Id, T, CH);
  /src/sys/arch/luna68k/dev/xplx/
xplx.asm 284 TMDR0L .EQU 0CH
1964 ; rotated next CH
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/X86/
Target.cpp 778 X86::CH, X86::DH};
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Decl.h 3057 MutableArrayRef<NamedDecl *> CH);
3066 QualType T, llvm::MutableArrayRef<NamedDecl *> CH);

Completed in 88 milliseconds

1 2