/external/python/cpython2/Modules/ |
D | errnomodule.c | 68 #define inscode(d, ds, de, name, code, comment) _inscode(d, de, name, code) in initerrno() macro 76 inscode(d, ds, de, "ENODEV", ENODEV, "No such device"); in initerrno() 79 inscode(d, ds, de, "ENOCSI", ENOCSI, "No CSI structure available"); in initerrno() 82 inscode(d, ds, de, "EHOSTUNREACH", EHOSTUNREACH, "No route to host"); in initerrno() 85 inscode(d, ds, de, "EHOSTUNREACH", WSAEHOSTUNREACH, "No route to host"); in initerrno() 89 inscode(d, ds, de, "ENOMSG", ENOMSG, "No message of desired type"); in initerrno() 92 inscode(d, ds, de, "EUCLEAN", EUCLEAN, "Structure needs cleaning"); in initerrno() 95 inscode(d, ds, de, "EL2NSYNC", EL2NSYNC, "Level 2 not synchronized"); in initerrno() 98 inscode(d, ds, de, "EL2HLT", EL2HLT, "Level 2 halted"); in initerrno() 101 inscode(d, ds, de, "ENODATA", ENODATA, "No data available"); in initerrno() [all …]
|
/external/python/cpython3/Modules/ |
D | errnomodule.c | 108 #define inscode(d, ds, de, name, code, comment) _inscode(d, de, name, code) in PyInit_errno() macro 119 inscode(d, ds, de, "ENODEV", ENODEV, "No such device"); in PyInit_errno() 122 inscode(d, ds, de, "ENOCSI", ENOCSI, "No CSI structure available"); in PyInit_errno() 125 inscode(d, ds, de, "EHOSTUNREACH", EHOSTUNREACH, "No route to host"); in PyInit_errno() 128 inscode(d, ds, de, "EHOSTUNREACH", WSAEHOSTUNREACH, "No route to host"); in PyInit_errno() 132 inscode(d, ds, de, "ENOMSG", ENOMSG, "No message of desired type"); in PyInit_errno() 135 inscode(d, ds, de, "EUCLEAN", EUCLEAN, "Structure needs cleaning"); in PyInit_errno() 138 inscode(d, ds, de, "EL2NSYNC", EL2NSYNC, "Level 2 not synchronized"); in PyInit_errno() 141 inscode(d, ds, de, "EL2HLT", EL2HLT, "Level 2 halted"); in PyInit_errno() 144 inscode(d, ds, de, "ENODATA", ENODATA, "No data available"); in PyInit_errno() [all …]
|
/external/brotli/c/enc/ |
D | command.h | 63 uint16_t inscode, uint16_t copycode, BROTLI_BOOL use_last_distance) { in CombineLengthCodes() argument 65 (uint16_t)((copycode & 0x7u) | ((inscode & 0x7u) << 3u)); in CombineLengthCodes() 66 if (use_last_distance && inscode < 8u && copycode < 16u) { in CombineLengthCodes() 71 uint32_t offset = 2u * ((copycode >> 3u) + 3u * (inscode >> 3u)); in CombineLengthCodes() 86 uint16_t inscode = GetInsertLengthCode(insertlen); in GetLengthCode() local 88 *code = CombineLengthCodes(inscode, copycode, use_last_distance); in GetLengthCode() 91 static BROTLI_INLINE uint32_t GetInsertBase(uint16_t inscode) { in GetInsertBase() argument 92 return kInsBase[inscode]; in GetInsertBase() 95 static BROTLI_INLINE uint32_t GetInsertExtra(uint16_t inscode) { in GetInsertExtra() argument 96 return kInsExtra[inscode]; in GetInsertExtra()
|
D | compress_fragment.c | 191 const size_t inscode = (nbits << 1) + prefix + 42; in EmitInsertLen() local 192 BrotliWriteBits(depth[inscode], bits[inscode], storage_ix, storage); in EmitInsertLen() 194 ++histo[inscode]; in EmitInsertLen()
|
D | backward_references_hq.c | 437 const uint16_t inscode = GetInsertLengthCode(pos - start); in UpdateNodes() local 439 const float base_cost = start_costdiff + (float)GetInsertExtra(inscode) + in UpdateNodes() 484 CombineLengthCodes(inscode, copycode, j == 0); in UpdateNodes() 537 const uint16_t cmdcode = CombineLengthCodes(inscode, copycode, 0); in UpdateNodes()
|
D | compress_fragment_two_pass.c | 126 const uint32_t inscode = (nbits << 1) + prefix + 2; in EmitInsertLen() local 128 **commands = inscode | (extra << 8); in EmitInsertLen()
|
D | brotli_bit_stream.c | 103 uint16_t inscode = GetInsertLengthCode(cmd->insert_len_); in StoreCommandExtra() local 105 uint32_t insnumextra = GetInsertExtra(inscode); in StoreCommandExtra() 106 uint64_t insextraval = cmd->insert_len_ - GetInsertBase(inscode); in StoreCommandExtra()
|