Home
last modified time | relevance | path

Searched refs:mode_bits (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/binutils/opcodes/
H A Ds390-mkopc.c48 int mode_bits; member
71 int min_cpu, int mode_bits) in insertOpcode() argument
101 sort_value += (min_cpu << 8) + mode_bits; in insertOpcode()
114 op_array[ix].mode_bits = mode_bits; in insertOpcode()
152 printf ("%i, ", op_array[ix].mode_bits); in dumpTable()
182 int mode_bits; in main() local
210 mode_bits = 0; in main()
214 mode_bits |= 1 << S390_OPCODE_ESA; in main()
218 mode_bits |= 1 << S390_OPCODE_ZARCH; in main()
228 insertOpcode (opcode, mnemonic, format, min_cpu, mode_bits); in main()
H A DChangeLog-0203677 (struct op_struct): Remove archbits. Add mode_bits and min_cpu.
678 (insertOpcode): Replace archbits by min_cpu and mode_bits.
679 (dumpTable): Write mode_bits and min_cpu instead of archbits.
682 mode_bits.
683 * s390-opc.txt: Replace archbits by min_cpu and mode_bits.
/freebsd-12.1/contrib/ntp/sntp/libopts/compat/
H A Dpathfind.c43 int mode_bits = 0; in pathfind() local
47 if (strchr( mode, 'r' )) mode_bits |= R_OK; in pathfind()
48 if (strchr( mode, 'w' )) mode_bits |= W_OK; in pathfind()
49 if (strchr( mode, 'x' )) mode_bits |= X_OK; in pathfind()
84 if (access(abs_name, mode_bits) >= 0) { in pathfind()