Home
last modified time | relevance | path

Searched refs:high (Results 1 – 16 of 16) sorted by relevance

/spdk/include/spdk_internal/
H A Dutf.h233 uint16_t high, low; in utf16le_valid() local
239 high = from_le16(p); in utf16le_valid()
241 if (high <= 0xD7FF || high >= 0xE000) { in utf16le_valid()
246 if (high >= 0xDC00) { in utf16le_valid()
251 assert(utf16_valid_surrogate_high(high)); in utf16le_valid()
268 utf16_decode_surrogate_pair(uint32_t high, uint32_t low) in utf16_decode_surrogate_pair() argument
272 assert(utf16_valid_surrogate_high(high)); in utf16_decode_surrogate_pair()
277 codepoint |= ((high & 0x3FF) << 10); 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
290 *high = 0xD800 | (codepoint >> 10); in utf16_encode_surrogate_pair()
[all …]
/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 Dabout.md4 libraries for writing high performance, scalable, user-mode storage
5 applications. It achieves high performance through the use of a number of key
35 high performance storage target, or used as the basis for production
H A Dtemplate_pg.md18 an application as well as provide some high level insight into how <COMPONENT NAME> works behind th…
19 …erve as a design document or an API reference but in some cases source code snippets and high level
24 Provide some high level description of what this component is, what it does and maybe why it exists…
33 avoid getting into too many details, just hit the high level concepts that would leave the develope…
60 This section should describe the mechanisms for configuring the component at a high level (i.e. you…
H A Dapplications.md7 featured and high quality. The major applications in SPDK are:
H A Dssd_internals.md11 very high level, this media has a few important properties:
H A Dsma.md28 The following sections provide a high-level description of each method. For
H A Dlibraries.md3 The SPDK repository is, first and foremost, a collection of high-performance
H A Dblob.md17 an application as well as provide some high level insight into how Blobstore works behind the scene…
18 …erve as a design document or an API reference and in some cases source code snippets and high level
/spdk/lib/json/
H A Djson_write.c268 uint64_t low = low_val, high = high_val; in spdk_json_write_uint128() local
273 if (high != 0) { in spdk_json_write_uint128()
277 ((unsigned __int128)high << 64); 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()
381 write_hex_4(&out[2], high); in write_codepoint()
/spdk/rpmbuild/
H A Dspdk.spec51 writing high performance, scalable, user-mode storage applications. It achieves high
/spdk/include/spdk/
H A Dnvmf_spec.h279 uint32_t high; member
307 uint32_t high; member
/spdk/
H A DREADME.md14 and libraries for writing high performance, scalable, user-mode storage
15 applications. It achieves high performance by moving all of the necessary
/spdk/scripts/perf/nvmf/
H A DREADME.md13 For TCP tests any TCP-capable NIC will do. However, high-bandwidth,
14 high-performance NICs like Intel E810 CQDA2 or Mellanox ConnectX-5 are
/spdk/test/accel/
H A Dbib270 %T A means for achieving a high degree of compaction on scan-digitized printed text
5780 %T A technique for high-performance data compression
/spdk/lib/nvmf/
H A Dvfio_user.c2598 * under high load. in handle_sq_tdbl_write()
3057 req->req.cmd->prop_set_cmd.value.u32.high = 0; in access_bar0_fn()