HomeSort by: relevance | last modified time | path
    Searched refs:new_bits (Results 1 - 10 of 10) sorted by relevancy

  /src/external/ibm-public/postfix/dist/src/util/
hash_fnv.c 85 #define HASH_FNV_NEW_BITS(new_bits) (new_bits)
87 #define HASH_FNV_NEW_BITS(new_bits) (1 + (new_bits))
111 HASH_FNV_T new_bits; local
118 new_bits = *(unsigned char *) src++;
119 hash ^= HASH_FNV_NEW_BITS(new_bits);
130 HASH_FNV_T new_bits; local
136 while ((new_bits = *(unsigned char *) src++) != 0) {
137 hash ^= HASH_FNV_NEW_BITS(new_bits);
    [all...]
  /src/external/gpl3/gdb/dist/sim/ppc/
idecode_expression.h 275 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); \
ld-insn.c 679 insn_bits *new_bits)
694 new_entry->expanded_bits = new_bits;
702 /* ASSERT new_bits == cur_entry bits */
739 insn_bits *new_bits = ZALLOC(insn_bits); local
740 new_bits->field = field;
741 new_bits->value = val;
742 new_bits->last = bits;
743 new_bits->opcode = table->opcode;
746 new_bits);
  /src/external/gpl3/gdb.old/dist/sim/ppc/
idecode_expression.h 275 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); \
ld-insn.c 679 insn_bits *new_bits)
694 new_entry->expanded_bits = new_bits;
702 /* ASSERT new_bits == cur_entry bits */
739 insn_bits *new_bits = ZALLOC(insn_bits); local
740 new_bits->field = field;
741 new_bits->value = val;
742 new_bits->last = bits;
743 new_bits->opcode = table->opcode;
746 new_bits);
  /src/external/gpl3/gdb/dist/sim/igen/
gen.c 265 opcode_bits *new_bits = ZALLOC (opcode_bits); local
266 new_bits->field = field;
267 new_bits->value = value;
268 new_bits->first = first;
269 new_bits->last = last;
270 new_bits->opcode = opcode;
283 int cmp = opcode_bit_cmp (new_bits, *last);
294 new_bits->next = *last;
295 *last = new_bits;
300 return new_bits;
1030 opcode_bits *new_bits = local
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/igen/
gen.c 265 opcode_bits *new_bits = ZALLOC (opcode_bits); local
266 new_bits->field = field;
267 new_bits->value = value;
268 new_bits->first = first;
269 new_bits->last = last;
270 new_bits->opcode = opcode;
283 int cmp = opcode_bit_cmp (new_bits, *last);
294 new_bits->next = *last;
295 *last = new_bits;
300 return new_bits;
1030 opcode_bits *new_bits = local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
mep-tdep.c 1202 ULONGEST new_bits;
1206 new_bits = extract_unsigned_integer (buf, size, byte_order);
1207 mixed_bits = ((r->writeable_bits & new_bits)
1199 ULONGEST new_bits; local
  /src/external/gpl3/gdb.old/dist/gdb/
mep-tdep.c 1202 ULONGEST new_bits;
1206 new_bits = extract_unsigned_integer (buf, size, byte_order);
1207 mixed_bits = ((r->writeable_bits & new_bits)
1199 ULONGEST new_bits; local
  /src/external/bsd/libarchive/dist/libarchive/
archive_read_support_format_rar5.c 1074 const int new_bits = rar->bits.bit_addr + bits; local
1075 rar->bits.in_addr += new_bits >> 3;
1076 rar->bits.bit_addr = new_bits & 7;

Completed in 49 milliseconds