Home
last modified time | relevance | path

Searched refs:bval (Results 1 – 14 of 14) sorted by relevance

/freebsd/sys/contrib/openzfs/module/icp/asm-x86_64/aes/
H A Daesopt.h551 #define bval(x, n) to_byte((x) >> (8 * (n))) macro
696 box[bval(vf(x, 0, c), rf(0, c))], \
697 box[bval(vf(x, 1, c), rf(1, c))], \
698 box[bval(vf(x, 2, c), rf(2, c))], \
699 box[bval(vf(x, 3, c), rf(3, c))])
702 (tab[bval(vf(x, 0, c), rf(0, c))] \
705 ^ op(tab[bval(vf(x, 3, c), rf(3, c))], 3))
708 (tab[0][bval(vf(x, 0, c), rf(0, c))] \
709 ^ tab[1][bval(vf(x, 1, c), rf(1, c))] \
710 ^ tab[2][bval(vf(x, 2, c), rf(2, c))] \
[all …]
/freebsd/lib/libc/db/recno/
H A Drec_get.c170 int bval, ch; in __rec_vpipe() local
173 bval = t->bt_bval; in __rec_vpipe()
177 if ((ch = getc(t->bt_rfp)) == EOF || ch == bval) { in __rec_vpipe()
268 int bval; in __rec_vmap() local
272 bval = t->bt_bval; in __rec_vmap()
279 for (data.data = sp; sp < ep && *sp != bval; ++sp); in __rec_vmap()
H A Drec_open.c100 t->bt_bval = openinfo->bval; in __rec_open()
/freebsd/sys/arm64/arm64/
H A Dundefined.c240 uint8_t bval; in swp_emulate() local
242 bval = val; in swp_emulate()
243 error = swapueword8((void *)vaddr, &bval); in swp_emulate()
244 val = bval; in swp_emulate()
/freebsd/sys/dev/bhnd/nvram/
H A Dbhnd_nvram_value.c709 bhnd_nvram_bool_t bval; in bhnd_nvram_val_encode_bool() local
736 if (bval != false) in bhnd_nvram_val_encode_bool()
745 const char *str = bval ? "true" : "false"; in bhnd_nvram_val_encode_bool()
758 uint8_t ival = bval ? 1 : 0; in bhnd_nvram_val_encode_bool()
882 bhnd_nvram_bool_t bval; in bhnd_nvram_val_encode_string() local
893 bval = true; in bhnd_nvram_val_encode_string()
898 bval = false; in bhnd_nvram_val_encode_string()
907 *((bhnd_nvram_bool_t *)outp) = bval; in bhnd_nvram_val_encode_string()
1176 bhnd_nvram_bool_t bval; in bhnd_nvram_val_encode_int() local
1179 bval = intv.u64; in bhnd_nvram_val_encode_int()
[all …]
/freebsd/sys/compat/lindebugfs/
H A Dlindebugfs.c354 bool *bval = data; in debugfs_bool_get() local
356 if (*bval) in debugfs_bool_get()
367 bool *bval = data; in debugfs_bool_set() local
370 *bval = 1; in debugfs_bool_set()
372 *bval = 0; in debugfs_bool_set()
/freebsd/contrib/tcsh/
H A Dsh.time.c717 pdtimet(time_t eval, time_t bval) in pdtimet() argument
720 pdtimet(clock_t eval, clock_t bval) in pdtimet()
733 val = (eval - bval) * 100 / HZ; in pdtimet()
735 val = (eval - bval) * 100 / clk_tck; in pdtimet()
/freebsd/cddl/contrib/opensolaris/lib/pyzfs/common/
H A Dioctl.c87 boolean_t bval; in nvl2py() local
112 (void) nvpair_value_boolean_value(nvp, &bval); in nvl2py()
113 pyval = Py_BuildValue("i", bval); in nvl2py()
/freebsd/include/
H A Ddb.h150 unsigned char bval; /* delimiting byte (variable-length records */ member
/freebsd/contrib/dialog/
H A Ddialog.c1658 bool bval; in process_common_options() local
1684 #define TraceBVal (bval ? "TRUE" : "FALSE") in process_common_options()
1696 bval = optionBool(argv[offset], data); in process_common_options()
1698 *(bool *) (target + data->offset) = bval; in process_common_options()
/freebsd/contrib/netbsd-tests/lib/libc/db/
H A Dh_db.c709 rh.bval = atoi(eq); in setinfo()
/freebsd/lib/libc/db/test/
H A Ddbtest.c652 rh.bval = atoi(eq);
/freebsd/contrib/nvi/common/
H A Dexf.c243 oinfo.bval = '\n'; /* Always set. */ in file_init()
/freebsd/contrib/libxo/libxo/
H A Dlibxo.c1050 uint8_t bval = (uint8_t) *buf; in xo_utf8_to_wc_len() local
1053 if ((bval & 0x80) == 0x0) in xo_utf8_to_wc_len()
1055 else if ((bval & 0xe0) == 0xc0) in xo_utf8_to_wc_len()
1057 else if ((bval & 0xf0) == 0xe0) in xo_utf8_to_wc_len()
1059 else if ((bval & 0xf8) == 0xf0) in xo_utf8_to_wc_len()