/freebsd/sys/contrib/openzfs/module/icp/asm-x86_64/aes/ |
H A D | aesopt.h | 551 #define bval(x, n) to_byte((x) >> (8 * (n))) macro 561 #define bval(x, n) to_byte((x) >> (24 - 8 * (n))) macro 572 #define word_out(x, c, v) { ((uint8_t *)(x) + 4 * c)[0] = bval(v, 0); \ 573 ((uint8_t *)(x) + 4 * c)[1] = bval(v, 1); \ 574 ((uint8_t *)(x) + 4 * c)[2] = bval(v, 2); \ 575 ((uint8_t *)(x) + 4 * c)[3] = bval(v, 3); } 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))]) [all …]
|
/freebsd/lib/libc/db/recno/ |
H A D | rec_get.c | 170 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 D | rec_open.c | 100 t->bt_bval = openinfo->bval; in __rec_open()
|
/freebsd/sys/arm64/arm64/ |
H A D | undefined.c | 240 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 D | bhnd_nvram_value.c | 709 bhnd_nvram_bool_t bval; in bhnd_nvram_val_encode_bool() local 730 bval = (*(const bhnd_nvram_bool_t *)inp != 0) ? true : false; in bhnd_nvram_val_encode_bool() 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 [all …]
|
/freebsd/sys/compat/lindebugfs/ |
H A D | lindebugfs.c | 369 bool *bval = data; in debugfs_bool_get() local 371 if (*bval) in debugfs_bool_get() 382 bool *bval = data; in debugfs_bool_set() local 385 *bval = 1; in debugfs_bool_set() 387 *bval = 0; in debugfs_bool_set()
|
/freebsd/contrib/tcsh/ |
H A D | sh.time.c | 717 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 D | ioctl.c | 87 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 D | db.h | 150 unsigned char bval; /* delimiting byte (variable-length records */ member
|
/freebsd/contrib/dialog/ |
H A D | dialog.c | 1658 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 D | h_db.c | 709 rh.bval = atoi(eq); in setinfo()
|
/freebsd/lib/libc/db/test/ |
H A D | dbtest.c | 652 rh.bval = atoi(eq);
|
/freebsd/contrib/nvi/common/ |
H A D | exf.c | 243 oinfo.bval = '\n'; /* Always set. */ in file_init()
|
/freebsd/contrib/libxo/libxo/ |
H A D | libxo.c | 1050 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()
|