HomeSort by relevance Sort by last modified time
    Searched refs:next_id (Results 1 - 25 of 44) sorted by null

1 2

  /external/tensorflow/tensorflow/contrib/lite/
nnapi_delegate.cc 76 uint32_t next_id = 0; local
130 ++next_id;
132 return next_id;
138 ANeuralNetworksModel* nn_model, uint32_t next_id) {
151 &next_id](int value) {
154 CHECK_NN(ANeuralNetworksModel_setOperandValue(nn_model, next_id, &value,
156 augmented_inputs.push_back(next_id++);
160 &next_id](float value) {
163 CHECK_NN(ANeuralNetworksModel_setOperandValue(nn_model, next_id, &value,
165 augmented_inputs.push_back(next_id++)
375 uint32_t next_id = addTensorOperands(interpreter, nn_model_); local
    [all...]
  /external/linux-kselftest/tools/testing/selftests/bpf/
test_progs.c 293 __u32 i, next_id, info_len, nr_id_found, duration = 0; local
417 next_id = 0;
418 while (!bpf_prog_get_next_id(next_id, &next_id)) {
425 prog_fd = bpf_prog_get_fd_by_id(next_id);
429 if (CHECK(prog_fd < 0, "get-prog-fd(next_id)",
430 "prog_fd %d next_id %d errno %d\n",
431 prog_fd, next_id, errno))
435 if (prog_infos[i].id == next_id)
465 "get-prog-info(next_id->fd)"
    [all...]
  /external/tensorflow/tensorflow/contrib/tensor_forest/kernels/v4/
decision-tree-resource.cc 47 const int32 next_id = local
49 current_id = tree.nodes(next_id).node_id().value();
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/layers/
spec.py 286 next_id = max_id + 1
338 enum_list[-1] = "%05d" % (next_id)
340 next_id = next_id + 1
356 enum_list[-1] = "%05d" % (next_id)
358 next_id = next_id + 1
  /external/strace/
bpf.c 312 uint32_t start_id, next_id; member in struct:__anon35273
319 PRINT_FIELD_U(", ", attr, next_id);
331 uint32_t prog_id, next_id; member in struct:__anon35274
338 PRINT_FIELD_U(", ", attr, next_id);
348 uint32_t map_id, next_id; member in struct:__anon35275
355 PRINT_FIELD_U(", ", attr, next_id);
  /frameworks/base/libs/usb/tests/accessorytest/
hid.c 39 static int next_id = 1; variable
85 id = next_id++;
  /external/mesa3d/src/gallium/drivers/r600/
compute_memory_pool.h 61 int64_t next_id; /**< For generating unique IDs for memory chunks */ member in struct:compute_memory_pool
  /external/tensorflow/tensorflow/core/kernels/
lookup_util.cc 39 int64 next_id = 0; local
41 next_id++;
47 *num_lines = next_id;
  /external/mesa3d/src/glx/tests/
create_context_unittest.cpp 36 static uint32_t next_id; variable
72 return next_id++;
139 next_id = 99;
  /external/brotli/c/enc/
block_splitter_inc.h 158 uint16_t next_id = 0; local
166 new_id[block_ids[i]] = next_id++;
173 assert(next_id <= num_histograms);
174 return next_id;
  /external/skia/src/core/
SkVertices.cpp 17 static int32_t next_id() { function
94 fVertices->fUniqueID = next_id();
  /external/skqp/src/core/
SkVertices.cpp 17 static int32_t next_id() { function
94 fVertices->fUniqueID = next_id();
  /external/valgrind/coregrind/
m_stacks.c 103 static UWord next_id; /* Next id we hand out to a newly registered stack */ variable
204 i->id = next_id++;
  /external/autotest/contrib/
loadtest.py 277 self.next_id = 0
313 entry_id = self.next_id
314 self.next_id += 1
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
difflib.py     [all...]
  /external/python/cpython2/Lib/
difflib.py     [all...]
  /external/python/cpython3/Lib/
difflib.py     [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
difflib.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
difflib.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
difflib.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
difflib.py     [all...]
  /external/autotest/site_utils/lxc/container_pool/
pool_unittest.py 506 next_id = self.create_count
515 while next_id in self.hanging_ids or -1 in self.hanging_ids:
  /external/skia/src/shaders/
SkPictureShader.cpp 111 uint32_t next_id() { function in namespace:__anon34223
130 , fUniqueID(next_id())
  /external/skqp/src/shaders/
SkPictureShader.cpp 118 uint32_t next_id() { function in namespace:__anon34891
137 , fUniqueID(next_id())
  /external/strace/tests/
bpf.c 594 printf("start_id=%u, next_id=0", 0xdeadbeef);
602 .next_id = 0xcafef00d
605 offsetofend(union bpf_attr, next_id);
615 printf("start_id=%u, next_id=%u", 0xbadc0ded, 0xcafef00d);
629 printf("prog_id=%u, next_id=0", 0xdeadbeef);
635 printf("prog_id=%u, next_id=%u", 0xbadc0ded, 0xcafef00d);
644 printf("map_id=%u, next_id=0", 0xdeadbeef);
650 printf("map_id=%u, next_id=%u", 0xbadc0ded, 0xcafef00d);

Completed in 745 milliseconds

1 2