Home
last modified time | relevance | path

Searched refs:new_bits (Results 1 – 6 of 6) sorted by relevance

/netbsd/src/external/ibm-public/postfix/dist/src/util/
Dhash_fnv.c85 #define HASH_FNV_NEW_BITS(new_bits) (new_bits) argument
87 #define HASH_FNV_NEW_BITS(new_bits) (1 + (new_bits)) argument
111 HASH_FNV_T new_bits; in hash_fnv() local
118 new_bits = *(unsigned char *) src++; in hash_fnv()
119 hash ^= HASH_FNV_NEW_BITS(new_bits); in hash_fnv()
130 HASH_FNV_T new_bits; in hash_fnvz() local
136 while ((new_bits = *(unsigned char *) src++) != 0) { in hash_fnvz()
137 hash ^= HASH_FNV_NEW_BITS(new_bits); in hash_fnvz()
/netbsd/src/external/gpl3/gdb/dist/sim/ppc/
Didecode_expression.h275 creg new_bits = ((XER & xer_summary_overflow) \
278 CR_SET(REG, new_bits); \
283 creg new_bits = ((XER & xer_summary_overflow) \
286 CR_SET(REG, new_bits); \
Dld-insn.c679 insn_bits *new_bits) in insn_table_insert_expanded() argument
694 new_entry->expanded_bits = new_bits; in insn_table_insert_expanded()
739 insn_bits *new_bits = ZALLOC(insn_bits); in insn_table_expand_opcode() local
740 new_bits->field = field; in insn_table_expand_opcode()
741 new_bits->value = val; in insn_table_expand_opcode()
742 new_bits->last = bits; in insn_table_expand_opcode()
743 new_bits->opcode = table->opcode; in insn_table_expand_opcode()
746 new_bits); in insn_table_expand_opcode()
/netbsd/src/external/gpl3/gdb/dist/sim/igen/
Dgen.c265 opcode_bits *new_bits = ZALLOC (opcode_bits); in new_opcode_bits() local
266 new_bits->field = field; in new_opcode_bits()
267 new_bits->value = value; in new_opcode_bits()
268 new_bits->first = first; in new_opcode_bits()
269 new_bits->last = last; in new_opcode_bits()
270 new_bits->opcode = opcode; in new_opcode_bits()
283 int cmp = opcode_bit_cmp (new_bits, *last); in new_opcode_bits()
294 new_bits->next = *last; in new_opcode_bits()
295 *last = new_bits; in new_opcode_bits()
300 return new_bits; in new_opcode_bits()
[all …]
/netbsd/src/external/gpl3/gdb/dist/gdb/
Dmep-tdep.c1199 ULONGEST new_bits; in mep_pseudo_csr_write() local
1203 new_bits = extract_unsigned_integer (buf, size, byte_order); in mep_pseudo_csr_write()
1204 mixed_bits = ((r->writeable_bits & new_bits) in mep_pseudo_csr_write()
/netbsd/src/external/bsd/libarchive/dist/libarchive/
Darchive_read_support_format_rar5.c1070 const int new_bits = rar->bits.bit_addr + bits; in skip_bits() local
1071 rar->bits.in_addr += new_bits >> 3; in skip_bits()
1072 rar->bits.bit_addr = new_bits & 7; in skip_bits()