Home
last modified time | relevance | path

Searched refs:low (Results 1 – 15 of 15) sorted by relevance

/spdk/include/spdk_internal/
H A Dutf.h233 uint16_t high, low; in utf16le_valid() local
257 low = from_le16(p); in utf16le_valid()
259 if (!utf16_valid_surrogate_low(low)) { in utf16le_valid()
268 utf16_decode_surrogate_pair(uint32_t high, uint32_t low) in utf16_decode_surrogate_pair() argument
273 assert(utf16_valid_surrogate_low(low)); in utf16_decode_surrogate_pair()
275 codepoint = low; in utf16_decode_surrogate_pair()
284 utf16_encode_surrogate_pair(uint32_t codepoint, uint16_t *high, uint16_t *low) in utf16_encode_surrogate_pair() argument
291 *low = 0xDC00 | (codepoint & 0x3FF); in utf16_encode_surrogate_pair()
294 assert(utf16_valid_surrogate_low(*low)); in utf16_encode_surrogate_pair()
/spdk/test/unit/lib/json/json_write.c/
H A Djson_write_ut.c96 #define VAL_UINT128(low, high) \ argument
97 CU_ASSERT(spdk_json_write_uint128(w, low, high) == 0);
98 #define VAL_NAME_UINT128(name, low, high) \ argument
99 CU_ASSERT(spdk_json_write_named_uint128(w, name, low, high) == 0);
345 test_generate_string_uint128(char *buf, int buf_size, uint64_t low, uint64_t high) in test_generate_string_uint128() argument
353 total = ((unsigned __int128)high << 64) + (unsigned __int128)low; in test_generate_string_uint128()
371 test_generate_string_name_uint128(char *name, char *buf, int buf_size, uint64_t low, uint64_t high) in test_generate_string_name_uint128() argument
374 int count = test_generate_string_uint128(buf, buf_size, low, high); in test_generate_string_name_uint128()
/spdk/doc/
H A Daccel_fw.md4 that can be implemented through plug-in modules and low-level libraries. These
39 framework itself. The software low level library does not expose a public API.
40 Applications may choose to interact directly with a low level library if there are
42 framework/module. Note that when using the low level libraries directly, the
44 functions exposed by the individual low level libraries. Thus, code written this
47 The low level library for IOAT is located in `/lib/ioat`. The low level library
64 Plug-in modules depend on low level libraries to interact with the hardware and
77 The DSA module supports the DSA hardware and relies on the low level IDXD library.
H A Didxd.md20 The low level library can be initialized either directly via `spdk_idxd_set_config`,
H A Devent.md67 scheduled to execute periodically on a timer if low latency is not required.
H A Dapplications.md62 SPDK has an experimental low overhead tracing framework. Tracepoints in this
H A Dsma.md7 interface is that it's designed to abstract the low level details exposed by
H A Dconcurrency.md145 such as C++, Rust, Go, or almost any other higher level language. However, SPDK is a low
H A Dlibraries.md101 low level tcp functions used by both the `spdk_nvme` and `spdk_nvmf` libraries. These headers are *…
/spdk/lib/json/
H A Djson_write.c268 uint64_t low = low_val, high = high_val; in spdk_json_write_uint128() local
276 unsigned __int128 total = (unsigned __int128)low + in spdk_json_write_uint128()
295 count = snprintf(buf, sizeof(buf), "%" PRIu64, low); in spdk_json_write_uint128()
357 uint16_t high, low; in write_codepoint() local
378 utf16_encode_surrogate_pair(codepoint, &high, &low); in write_codepoint()
384 write_hex_4(&out[8], low); in write_codepoint()
/spdk/include/spdk/
H A Dnvmf_spec.h278 uint32_t low; member
306 uint32_t low; member
/spdk/lib/nvme/
H A Dnvme_fabric.c159 *value = response->value.u32.low; in nvme_fabric_prop_get_cmd_sync()
181 value = response->value.u32.low; in nvme_fabric_prop_get_cmd_done()
/spdk/test/unit/lib/nvme/nvme_fabric.c/
H A Dnvme_fabric_ut.c257 CU_ASSERT(g_ut_response.value.u32.low == (value & 0xFFFFFFFF)); in test_nvme_fabric_prop_get_cmd()
/spdk/test/accel/
H A Dbib1454 %T Statistical clustering procedures applied to low-cost speech recognition
3905 %T Unlimited vocabulary speech synthesis with low data rates
4378 %T Natural artificial languages: low-level processes
/spdk/lib/nvmf/
H A Dvfio_user.c3058 req->req.cmd->prop_set_cmd.value.u32.low = *(uint32_t *)buf; in access_bar0_fn()