Home
last modified time | relevance | path

Searched refs:codep (Results 1 – 4 of 4) sorted by relevance

/openbsd-src/gnu/usr.bin/binutils/opcodes/
H A Di386-dis.c1139 static unsigned char *codep; variable
1720 FETCH_DATA (the_info, codep + 1); in ckprefix()
1722 switch (*codep) in ckprefix()
1742 newrex = *codep; in ckprefix()
1786 codep++; in ckprefix()
1801 codep++; in ckprefix()
2050 codep = priv.the_buffer; in print_insn()
2059 if (codep > priv.the_buffer) in print_insn()
2080 insn_codep = codep; in print_insn()
2083 FETCH_DATA (info, codep + 1); in print_insn()
[all …]
/openbsd-src/gnu/usr.bin/binutils-2.17/opcodes/
H A Di386-dis.c1190 static unsigned char *codep; variable
2353 FETCH_DATA (the_info, codep + 1); in ckprefix()
2355 switch (*codep) in ckprefix()
2375 newrex = *codep; in ckprefix()
2419 codep++; in ckprefix()
2434 codep++; in ckprefix()
2686 codep = priv.the_buffer; in print_insn()
2695 if (codep > priv.the_buffer) in print_insn()
2716 insn_codep = codep; in print_insn()
2719 FETCH_DATA (info, codep + 1); in print_insn()
[all …]
/openbsd-src/lib/libcbor/src/cbor/internal/
H A Dunicode.c59 uint32_t _cbor_unicode_decode(uint32_t* state, uint32_t* codep, uint32_t byte) { in _cbor_unicode_decode() argument
62 *codep = (*state != UTF8_ACCEPT) ? (byte & 0x3fu) | (*codep << 6) in _cbor_unicode_decode()
/openbsd-src/lib/libc/time/
H A Dlocaltime.c129 static long detzcode(const char * codep);
130 static time_t detzcode64(const char * codep);
220 detzcode(const char *codep) in detzcode()
225 result = (codep[0] & 0x80) ? ~0L : 0; in detzcode()
227 result = (result << 8) | (codep[i] & 0xff); in detzcode()
232 detzcode64(const char *codep) in detzcode64()
237 result = (codep[0] & 0x80) ? (~(int_fast64_t) 0) : 0; in detzcode64()
239 result = result * 256 + (codep[i] & 0xff); in detzcode64()
219 detzcode(const char * codep) detzcode() argument
231 detzcode64(const char * codep) detzcode64() argument