Home
last modified time | relevance | path

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

/spdk/lib/util/
H A Dbit_array.c339 struct spdk_bit_array *array; member
348 struct spdk_bit_array *array; in spdk_bit_pool_create() local
350 array = spdk_bit_array_create(num_bits); in spdk_bit_pool_create()
351 if (array == NULL) { in spdk_bit_pool_create()
357 spdk_bit_array_free(&array); in spdk_bit_pool_create()
361 pool->array = array; in spdk_bit_pool_create()
369 spdk_bit_pool_create_from_array(struct spdk_bit_array *array) in spdk_bit_pool_create_from_array() argument
378 pool->array = array; in spdk_bit_pool_create_from_array()
379 pool->lowest_free_bit = spdk_bit_array_find_first_clear(array, 0); in spdk_bit_pool_create_from_array()
380 pool->free_count = spdk_bit_array_count_clear(array); in spdk_bit_pool_create_from_array()
[all …]
/spdk/include/spdk/
H A Dbit_pool.h57 struct spdk_bit_pool *spdk_bit_pool_create_from_array(struct spdk_bit_array *array);
/spdk/test/app/fuzz/nvme_fuzz/
H A DREADME.md38 array in a file and then pass them to the fuzzer using the -j option. Please see the
39 example.json file in this directory for an example of a properly formed array of command
H A Dnvme_fuzz.c228 report_successful_opcodes(bool *array, int length) in report_successful_opcodes() argument
233 if (array[i] == true) { in report_successful_opcodes()
/spdk/scripts/bpf/
H A Dsched.bt10 /* Defining these as a 1-element array here allows us to
/spdk/doc/
H A Dnvme_spec.md16 queue is an array of 64 byte command structures, plus 2 integers (head and tail
17 indices). The completion queue is similarly an array of 16 byte completion
77 allocated in an array, so they can be quickly looked up by an index. The tracker
H A Dcompression.md61 array index into the array of chunk map entries. At start, all entries in the logical map have no
H A Dgdb_macros.md269 - SpdkArr: Iteration over an array (instead of a linked list)
H A Dusdt.md157 modify SPDK to have the char array for storage, and a char pointer that points to
H A Dvhost_processing.md145 Virtqueue generally consists of an array of descriptors and each I/O needs
H A Dblob.md163 * **Blobstore Type**: This field is a character array to be used by applications that need to ident…
/spdk/test/app/fuzz/vhost_fuzz/
H A DREADME.md33 It is possible to supply all three types of requests in a single array to the application. They wil…
/spdk/lib/iscsi/
H A Dparam.c45 iscsi_find_key_in_array(const char *key, const char *array[]) in iscsi_find_key_in_array() argument
49 for (i = 0; array[i] != NULL; i++) { in iscsi_find_key_in_array()
50 if (strcasecmp(key, array[i]) == 0) { in iscsi_find_key_in_array()
/spdk/test/scheduler/
H A Dcommon.sh16 local array=$1
22 eval "${array}[elem]=$elem"
/spdk/scripts/
H A Dcheck_format.sh57 array=("${!name}")
59 for element in "${array[@]}"; do
308 # Build an array of all the modified C libraries.
653 # SC2128: Expanding an array without an index only gives the first element.
659 # SC2178: Variable was used as an array but is now assigned a string.