Searched refs:array (Results 1 – 15 of 15) sorted by relevance
339 struct spdk_bit_array *array; member348 struct spdk_bit_array *array; in spdk_bit_pool_create() local350 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() argument378 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 …]
57 struct spdk_bit_pool *spdk_bit_pool_create_from_array(struct spdk_bit_array *array);
38 array in a file and then pass them to the fuzzer using the -j option. Please see the39 example.json file in this directory for an example of a properly formed array of command
228 report_successful_opcodes(bool *array, int length) in report_successful_opcodes() argument233 if (array[i] == true) { in report_successful_opcodes()
10 /* Defining these as a 1-element array here allows us to
16 queue is an array of 64 byte command structures, plus 2 integers (head and tail17 indices). The completion queue is similarly an array of 16 byte completion77 allocated in an array, so they can be quickly looked up by an index. The tracker
61 array index into the array of chunk map entries. At start, all entries in the logical map have no
269 - SpdkArr: Iteration over an array (instead of a linked list)
157 modify SPDK to have the char array for storage, and a char pointer that points to
145 Virtqueue generally consists of an array of descriptors and each I/O needs
163 * **Blobstore Type**: This field is a character array to be used by applications that need to ident…
33 It is possible to supply all three types of requests in a single array to the application. They wil…
45 iscsi_find_key_in_array(const char *key, const char *array[]) in iscsi_find_key_in_array() argument49 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()
16 local array=$122 eval "${array}[elem]=$elem"
57 array=("${!name}")59 for element in "${array[@]}"; do308 # 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.