HomeSort by relevance Sort by last modified time
    Searched refs:next_key (Results 1 - 23 of 23) sorted by null

  /external/linux-kselftest/tools/testing/selftests/bpf/
test_maps.c 32 long long key, next_key, first_key, value; local
95 assert(bpf_map_get_next_key(fd, &key, &next_key) == 0 &&
96 (next_key == first_key));
97 assert(bpf_map_get_next_key(fd, &next_key, &next_key) == 0 &&
98 (next_key == 1 || next_key == 2) &&
99 (next_key != first_key));
100 assert(bpf_map_get_next_key(fd, &next_key, &next_key) == -1 &
142 long long key, next_key, first_key; local
246 long long key, value, next_key; local
293 int key, next_key, fd; local
350 int key, next_key, fd, i; local
    [all...]
test_lru_map.c 44 unsigned long long next_key = 0; local
48 while (!bpf_map_get_next_key(map1, &next_key, &next_key)) {
49 assert(!bpf_map_lookup_elem(map1, &next_key, value1));
50 ret = bpf_map_lookup_elem(map0, &next_key, value0);
53 next_key, strerror(errno), errno);
58 next_key, value0[0], value1[0]);
  /external/libdrm/tests/
drmsl.c 112 unsigned long next_key = 0; local
119 &next_key, &next_value);
121 key, retval, prev_key, next_key);
  /external/mesa3d/src/gallium/state_trackers/nine/
pixelshader9.h 58 uint64_t next_key; member in struct:NinePixelShader9
107 ps->next_key = key;
vertexshader9.h 68 uint64_t next_key; member in struct:NineVertexShader9
106 vs->next_key = key;
pixelshader9.c 152 key = This->next_key;
vertexshader9.c 180 key = This->next_key;
  /system/netd/libbpf/
BpfUtils.cpp 115 int getNextMapKey(const base::unique_fd& map_fd, void* key, void* next_key) {
120 attr.next_key = ptr_to_u64(next_key);
130 attr.next_key = ptr_to_u64(firstKey);
  /external/libdrm/
xf86drmSL.c 232 unsigned long *next_key, void **next_value)
240 *prev_key = *next_key = key;
248 *next_key = update[0]->forward[0]->key;
xf86drm.h 721 unsigned long *next_key, void **next_value);
  /external/toybox/toys/posix/
sort.c 84 struct sort_key *next_key; // linked list member in struct:sort_key
174 while (*pkey) pkey = &((*pkey)->next_key);
245 key = key->next_key)
  /system/netd/libbpf/include/bpf/
BpfUtils.h 138 int getNextMapKey(const base::unique_fd& map_fd, void* key, void* next_key);
  /external/tensorflow/tensorflow/contrib/training/python/training/
sequence_queueing_state_saver_test.py 97 (next_batch.key, next_batch.next_key, next_batch.sequences["seq1"],
135 (next_batch.key, next_batch.next_key, next_batch.sequences["seq1"],
409 (got_key, next_key, length, total_length, sequence, sequence_count,
412 next_batch.key, next_batch.next_key, next_batch.length,
433 # The unique key matches next_key
435 next_key[i].decode("ascii").split(":")[1])
batch_sequences_with_states_test.py 152 (next_batch.key, next_batch.next_key, next_batch.sequences["seq1"],
194 (next_batch.key, next_batch.next_key, next_batch.sequences["seq1"],
sequence_queueing_state_saver.py 436 def next_key(self): member in class:NextQueuedSequenceBatch
662 * `total_length`, `length`, `insertion_index`, `key`, `next_key`,
    [all...]
  /external/strace/
bpf.c 179 uint64_t ATTRIBUTE_ALIGNED(8) key, next_key; member in struct:bpf_io_elem_struct
188 PRINT_FIELD_X(", ", attr, next_key);
  /external/strace/tests/
bpf.c 342 printf("map_fd=-1, key=0, next_key=0");
351 .next_key = 0xbadc0ded
354 offsetofend(union bpf_attr, next_key);
364 printf("map_fd=-1, key=0xdeadbeef, next_key=0xbadc0ded");
  /external/strace/tests-m32/
bpf.c 342 printf("map_fd=-1, key=0, next_key=0");
351 .next_key = 0xbadc0ded
354 offsetofend(union bpf_attr, next_key);
364 printf("map_fd=-1, key=0xdeadbeef, next_key=0xbadc0ded");
  /external/strace/tests-mx32/
bpf.c 342 printf("map_fd=-1, key=0, next_key=0");
351 .next_key = 0xbadc0ded
354 offsetofend(union bpf_attr, next_key);
364 printf("map_fd=-1, key=0xdeadbeef, next_key=0xbadc0ded");
  /bionic/libc/kernel/uapi/linux/
bpf.h 165 __aligned_u64 next_key; member in union:bpf_attr::__anon486::__anon487
  /external/iproute2/include/uapi/linux/
bpf.h 199 __aligned_u64 next_key; member in union:bpf_attr::__anon21859::__anon21860
  /external/kernel-headers/original/uapi/linux/
bpf.h 249 __aligned_u64 next_key; member in union:bpf_attr::__anon22692::__anon22693
  /external/v8/src/
objects.cc     [all...]

Completed in 744 milliseconds