Searched refs:codes (Results 1 - 13 of 13) sorted by relevance

/xnu-2422.115.4/libkern/zlib/
H A Dinftrees.h81 unsigned codes, code FAR * FAR *table,
H A Dinflate.h95 Read deflate codes:
129 code const FAR *lencode; /* starting table for length/literal codes */
130 code const FAR *distcode; /* starting table for distance codes */
138 code FAR *next; /* next available space in codes[] */
141 code codes[ENOUGH]; /* space for code tables */ member in struct:inflate_state
H A Dinftrees.c49 The code lengths are lens[0..codes-1]. The result starts at *table,
59 int inflate_table(type, lens, codes, table, bits, work)
62 unsigned codes;
73 int left; /* number of prefix codes available */
85 unsigned short count[MAXBITS+1]; /* number of codes of each length */
87 static const unsigned short lbase[31] = { /* Length codes 257..285 base */
90 static const unsigned short lext[31] = { /* Length codes 257..285 extra */
93 static const unsigned short dbase[32] = { /* Distance codes 0..29 base */
97 static const unsigned short dext[32] = { /* Distance codes 0..29 extra */
104 code lengths are lens[0..codes
[all...]
H A Dinflate.c150 state->lencode = state->distcode = state->next = state->codes;
304 puts(" /* inffixed.h -- table for decoding fixed codes");
537 if there is no input available. The decoding of variable length codes uses
821 Tracev((stderr, "inflate: fixed codes block%s\n",
823 state->mode = LEN; /* decode codes */
826 Tracev((stderr, "inflate: dynamic codes block%s\n",
892 state->next = state->codes;
958 state->next = state->codes;
977 Tracev((stderr, "inflate: codes ok\n"));
1384 if (state->lencode >= state->codes
[all...]
H A Dinfback.c330 Tracev((stderr, "inflate: fixed codes block%s\n",
332 state->mode = LEN; /* decode codes */
335 Tracev((stderr, "inflate: dynamic codes block%s\n",
405 state->next = state->codes;
471 state->next = state->codes;
490 Tracev((stderr, "inflate: codes ok\n"));
/xnu-2422.115.4/bsd/kern/
H A DMakefile10 trace.codes
H A Dkern_sig.c3011 mach_exception_data_type_t codes[EXCEPTION_CODE_MAX]; local
3013 codes[0] = code;
3014 codes[1] = sub;
3015 return(bsd_exception(exc, codes, 2));
/xnu-2422.115.4/libsyscall/mach/mach/
H A Derrorlib.h86 const char * const *codes; member in struct:error_subsystem
/xnu-2422.115.4/libsyscall/mach/
H A Derrorlib.h96 const char * const *codes; member in struct:error_subsystem
H A Dmach_error_string.c167 return( (char *)sub_p->codes[code] );
/xnu-2422.115.4/bsd/sys/
H A Dsystm.h177 extern kern_return_t bsd_exception(int, mach_exception_data_t codes, int);
/xnu-2422.115.4/osfmk/i386/
H A Dtrap.c1169 mach_exception_data_type_t codes[EXCEPTION_CODE_MAX]; local
1173 codes[0] = code; /* new exception interface */
1174 codes[1] = subcode;
1175 exception_triage(exc, codes, 2);
/xnu-2422.115.4/security/
H A Dmac_base.c2279 mach_exception_data_type_t codes[EXCEPTION_CODE_MAX]; local
2282 /* Only allow execption codes in MACF's reserved range. */
2292 codes[0] = (mach_exception_data_type_t)code;
2293 codes[1] = (mach_exception_data_type_t)subcode;
2295 return (bsd_exception(EXC_SOFTWARE, codes, 2) != KERN_SUCCESS);

Completed in 104 milliseconds