| /f-stack/dpdk/lib/librte_lpm/ |
| H A D | rte_lpm_sse.h | 22 rte_xmm_t i8; in rte_lpm_lookupx4() local 67 i8.x = _mm_and_si128(ip, mask8); in rte_lpm_lookupx4() 84 i8.u32[0] = i8.u32[0] + in rte_lpm_lookupx4() 86 ptbl = (const uint32_t *)&lpm->tbl8[i8.u32[0]]; in rte_lpm_lookupx4() 91 i8.u32[1] = i8.u32[1] + in rte_lpm_lookupx4() 93 ptbl = (const uint32_t *)&lpm->tbl8[i8.u32[1]]; in rte_lpm_lookupx4() 98 i8.u32[2] = i8.u32[2] + in rte_lpm_lookupx4() 100 ptbl = (const uint32_t *)&lpm->tbl8[i8.u32[2]]; in rte_lpm_lookupx4() 105 i8.u32[3] = i8.u32[3] + in rte_lpm_lookupx4() 107 ptbl = (const uint32_t *)&lpm->tbl8[i8.u32[3]]; in rte_lpm_lookupx4()
|
| H A D | rte_lpm_neon.h | 23 rte_xmm_t i8; in rte_lpm_lookupx4() local 66 i8.x = vandq_s32(ip, mask8); in rte_lpm_lookupx4() 83 i8.u32[0] = i8.u32[0] + in rte_lpm_lookupx4() 85 ptbl = (const uint32_t *)&lpm->tbl8[i8.u32[0]]; in rte_lpm_lookupx4() 90 i8.u32[1] = i8.u32[1] + in rte_lpm_lookupx4() 92 ptbl = (const uint32_t *)&lpm->tbl8[i8.u32[1]]; in rte_lpm_lookupx4() 97 i8.u32[2] = i8.u32[2] + in rte_lpm_lookupx4() 99 ptbl = (const uint32_t *)&lpm->tbl8[i8.u32[2]]; in rte_lpm_lookupx4() 104 i8.u32[3] = i8.u32[3] + in rte_lpm_lookupx4() 106 ptbl = (const uint32_t *)&lpm->tbl8[i8.u32[3]]; in rte_lpm_lookupx4()
|
| H A D | rte_lpm_altivec.h | 23 rte_xmm_t i8; in rte_lpm_lookupx4() local 73 i8.x = vec_and(ip, mask8); in rte_lpm_lookupx4() 90 i8.u32[0] = i8.u32[0] + in rte_lpm_lookupx4() 92 ptbl = (const uint32_t *)&lpm->tbl8[i8.u32[0]]; in rte_lpm_lookupx4() 97 i8.u32[1] = i8.u32[1] + in rte_lpm_lookupx4() 99 ptbl = (const uint32_t *)&lpm->tbl8[i8.u32[1]]; in rte_lpm_lookupx4() 104 i8.u32[2] = i8.u32[2] + in rte_lpm_lookupx4() 106 ptbl = (const uint32_t *)&lpm->tbl8[i8.u32[2]]; in rte_lpm_lookupx4() 111 i8.u32[3] = i8.u32[3] + in rte_lpm_lookupx4() 113 ptbl = (const uint32_t *)&lpm->tbl8[i8.u32[3]]; in rte_lpm_lookupx4()
|
| /f-stack/app/redis-5.0.5/tests/unit/ |
| H A D | bitfield.tcl | 5 lappend results [r bitfield bits set i8 0 -100] 6 lappend results [r bitfield bits set i8 0 101] 7 lappend results [r bitfield bits get i8 0] 69 r bitfield bits set i8 #0 100 70 lappend results [r bitfield bits overflow wrap incrby i8 #0 257] 71 lappend results [r bitfield bits get i8 #0] 73 lappend results [r bitfield bits get i8 #0] 80 lappend results [r bitfield bits overflow sat incrby i8 #0 257] 81 lappend results [r bitfield bits get i8 #0] 83 lappend results [r bitfield bits get i8 #0] [all …]
|
| /f-stack/freebsd/i386/i386/ |
| H A D | bpf_jit_machdep.h | 204 #define ADDib(i8, r32) do { \ argument 207 emitm(&stream, i8, 1); \ 224 #define SUBib(i8, r32) do { \ argument 227 emitm(&stream, i8, 1); \ 243 #define ANDib(i8, r8) do { \ argument 250 emitm(&stream, i8, 1); \ 326 #define SHLib(i8, r32) do { \ argument 329 emitm(&stream, i8, 1); \ 339 #define SHRib(i8, r32) do { \ argument 342 emitm(&stream, i8, 1); \
|
| /f-stack/freebsd/amd64/amd64/ |
| H A D | bpf_jit_machdep.h | 259 #define ADDib(i8, r32) do { \ argument 262 emitm(&stream, i8, 1); \ 279 #define SUBib(i8, r64) do { \ argument 282 emitm(&stream, i8, 1); \ 298 #define ANDib(i8, r8) do { \ argument 305 emitm(&stream, i8, 1); \ 381 #define SHLib(i8, r32) do { \ argument 384 emitm(&stream, i8, 1); \ 394 #define SHRib(i8, r32) do { \ argument 397 emitm(&stream, i8, 1); \
|
| /f-stack/freebsd/contrib/openzfs/cmd/zed/ |
| H A D | zed_event.c | 600 uint8_t i8; in _zed_event_add_nvpair() local 621 (void) nvpair_value_byte(nvp, &i8); in _zed_event_add_nvpair() 622 _zed_event_add_var(eid, zsp, prefix, name, "%d", i8); in _zed_event_add_nvpair() 625 (void) nvpair_value_int8(nvp, (int8_t *)&i8); in _zed_event_add_nvpair() 626 _zed_event_add_var(eid, zsp, prefix, name, "%d", i8); in _zed_event_add_nvpair() 629 (void) nvpair_value_uint8(nvp, &i8); in _zed_event_add_nvpair() 630 _zed_event_add_var(eid, zsp, prefix, name, "%u", i8); in _zed_event_add_nvpair()
|
| /f-stack/freebsd/contrib/octeon-sdk/ |
| H A D | cvmx-fau.h | 322 uint64_t i8; in cvmx_fau_tagwait_fetch_and_add8() member 325 result.i8 = cvmx_read64_int8(__cvmx_fau_atomic_address(1, reg, value)); in cvmx_fau_tagwait_fetch_and_add8()
|
| /f-stack/freebsd/contrib/openzfs/module/zfs/ |
| H A D | fm.c | 177 uint8_t i8; in fm_nvprintr() local 200 (void) nvpair_value_byte(nvp, &i8); in fm_nvprintr() 201 c = fm_printf(d + 1, c, cols, "0x%x", i8); in fm_nvprintr() 205 (void) nvpair_value_int8(nvp, (void *)&i8); in fm_nvprintr() 206 c = fm_printf(d + 1, c, cols, "0x%x", i8); in fm_nvprintr() 210 (void) nvpair_value_uint8(nvp, &i8); in fm_nvprintr() 211 c = fm_printf(d + 1, c, cols, "0x%x", i8); in fm_nvprintr()
|
| /f-stack/freebsd/crypto/openssl/arm/ |
| H A D | ghashv8-armx.S | 15 vmov.i8 q11,#0xe1 64 vmov.i8 q11,#0xe1 122 vmov.i8 q11,#0xe1
|
| H A D | ghash-armv4.S | 359 vmov.i8 q8,#0xe1
|
| /f-stack/dpdk/lib/librte_eal/common/ |
| H A D | eal_common_trace_points.c | 26 lib.eal.generic.i8)
|
| /f-stack/app/redis-5.0.5/deps/jemalloc/include/msvc_compat/C99/ |
| H A D | stdint.h | 230 #define INT8_C(val) val##i8
|
| /f-stack/freebsd/contrib/openzfs/cmd/zpool/ |
| H A D | zpool_main.c | 9285 uint8_t i8; in zpool_do_events_nvprint() local 9305 (void) nvpair_value_byte(nvp, &i8); in zpool_do_events_nvprint() 9306 printf(gettext("0x%x"), i8); in zpool_do_events_nvprint() 9310 (void) nvpair_value_int8(nvp, (void *)&i8); in zpool_do_events_nvprint() 9311 printf(gettext("0x%x"), i8); in zpool_do_events_nvprint() 9315 (void) nvpair_value_uint8(nvp, &i8); in zpool_do_events_nvprint() 9316 printf(gettext("0x%x"), i8); in zpool_do_events_nvprint()
|
| /f-stack/freebsd/contrib/zstd/doc/educational_decoder/ |
| H A D | zstd_decompress.c | 65 typedef int8_t i8; typedef
|