Home
last modified time | relevance | path

Searched refs:inscode (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Modules/
Derrnomodule.c68 #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/
Derrnomodule.c108 #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/
Dcommand.h63 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()
Dcompress_fragment.c191 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()
Dbackward_references_hq.c437 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()
Dcompress_fragment_two_pass.c126 const uint32_t inscode = (nbits << 1) + prefix + 2; in EmitInsertLen() local
128 **commands = inscode | (extra << 8); in EmitInsertLen()
Dbrotli_bit_stream.c103 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()