/external/tensorflow/tensorflow/core/kernels/boosted_trees/quantiles/ |
D | weighted_quantiles_summary.h | 307 size_t next_idx = cur_idx + 1; in GenerateQuantiles() local 308 while (next_idx < entries_.size() && in GenerateQuantiles() 309 d_2 >= entries_[next_idx].min_rank + entries_[next_idx].max_rank) { in GenerateQuantiles() 310 ++next_idx; in GenerateQuantiles() 312 cur_idx = next_idx - 1; in GenerateQuantiles() 315 if (next_idx == entries_.size() || in GenerateQuantiles() 317 entries_[next_idx].PrevMaxRank()) { in GenerateQuantiles() 320 output.push_back(entries_[next_idx].value); in GenerateQuantiles()
|
/external/rust/crates/managed/src/ |
D | slotmap.rs | 72 next_idx: usize, field 250 next_idx: 0, in new() 261 if idx >= self.next_idx { in get() 269 if idx >= self.next_idx { in get_mut() 277 self.next_idx in len() 281 if self.next_idx == self.slice.len() { in try_reserve() 284 let idx = self.next_idx; in try_reserve() 285 self.next_idx += 1; in try_reserve()
|
/external/skqp/src/compute/skc/ |
D | suballocator.c | 284 skc_uint const next_idx = next->idx; in skc_suballocator_subbuf_free() local 288 if (last_idx != next_idx) in skc_suballocator_subbuf_free() 293 suballocator->ids[next_idx] = last_id; in skc_suballocator_subbuf_free() 294 last->idx = next_idx; in skc_suballocator_subbuf_free()
|
/external/python/cpython2/Modules/ |
D | _json.c | 899 Py_ssize_t next_idx; in _parse_object_str() local 919 key = scanstring_str(pystr, idx + 1, encoding, strict, &next_idx); in _parse_object_str() 922 idx = next_idx; in _parse_object_str() 934 val = scan_once_str(s, pystr, idx, &next_idx); in _parse_object_str() 948 idx = next_idx; in _parse_object_str() 1025 Py_ssize_t next_idx; in _parse_object_unicode() local 1045 key = scanstring_unicode(pystr, idx + 1, strict, &next_idx); in _parse_object_unicode() 1048 idx = next_idx; in _parse_object_unicode() 1060 val = scan_once_unicode(s, pystr, idx, &next_idx); in _parse_object_unicode() 1074 idx = next_idx; in _parse_object_unicode() [all …]
|
/external/llvm-project/libcxx/utils/ |
D | graph_header_deps.py | 130 next_idx = 0 134 name = 'header_%d' % next_idx 135 next_idx += 1
|
/external/python/cpython3/Modules/ |
D | _json.c | 689 Py_ssize_t next_idx; in _parse_object_unicode() local 718 key = scanstring_unicode(pystr, idx + 1, s->strict, &next_idx); in _parse_object_unicode() 728 idx = next_idx; in _parse_object_unicode() 740 val = scan_once_unicode(s, pystr, idx, &next_idx); in _parse_object_unicode() 762 idx = next_idx; in _parse_object_unicode() 817 Py_ssize_t next_idx; in _parse_array_unicode() local 838 val = scan_once_unicode(s, pystr, idx, &next_idx); in _parse_array_unicode() 846 idx = next_idx; in _parse_array_unicode() 1140 Py_ssize_t next_idx = -1; in scanner_call() local 1146 rval = scan_once_unicode(self, pystr, idx, &next_idx); in scanner_call() [all …]
|
/external/openssh/ |
D | xmss_fast.h | 37 unsigned int next_idx; member
|
D | xmss_fast.c | 264 setLtreeADRS(ltree_addr, treehash->next_idx); in treehash_update() 265 setOTSADRS(ots_addr, treehash->next_idx); in treehash_update() 274 setTreeIndex(node_addr, (treehash->next_idx >> (nodeheight+1))); in treehash_update() 289 treehash->next_idx++; in treehash_update() 509 state->treehash[i].next_idx = startidx; in bds_round()
|
D | sshkey-xmss.c | 704 (r = sshbuf_put_u32(b, th->next_idx)) != 0 || in sshkey_xmss_serialize_state() 816 (r = sshbuf_get_u32(b, &th->next_idx)) != 0 || in sshkey_xmss_deserialize_state()
|
/external/mesa3d/src/compiler/nir/ |
D | nir_serialize.c | 47 uint32_t next_idx; member 73 uint32_t next_idx; member 93 uint32_t index = ctx->next_idx++; in write_add_object() 109 assert(ctx->next_idx < ctx->idx_table_len); in read_add_object() 110 ctx->idx_table[ctx->next_idx++] = obj; in read_add_object() 797 return ctx->next_idx < (1 << 16); in are_object_ids_16bit() 2057 *(uint32_t *)(blob->data + idx_size_offset) = ctx.next_idx; in nir_serialize()
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/ir/ |
D | tf_ops_n_z.cc | 3032 int next_idx = 0; in matchAndRewrite() local 3037 next_idx++; in matchAndRewrite() 3058 next_idx = 0; in matchAndRewrite() 3061 new_cond_block.eraseArgument(next_idx); in matchAndRewrite() 3062 new_body_block.eraseArgument(next_idx); in matchAndRewrite() 3063 new_yield.eraseOperand(next_idx); in matchAndRewrite() 3066 new_results.push_back(new_while_op.getResult(next_idx++)); in matchAndRewrite()
|
/external/f2fs-tools/fsck/ |
D | fsck.c | 1306 int next_idx = 0; in print_dentry() local 1316 next_idx = idx + (name_len + F2FS_SLOT_LEN - 1) / F2FS_SLOT_LEN; in print_dentry() 1318 bit_offset = find_next_bit_le(bitmap, max, next_idx); in print_dentry()
|
/external/libwebm/mkvparser/ |
D | mkvparser.cc | 2696 const long next_idx = pCurr->m_index + 1; in ParseNext() local 2698 if (next_idx < m_clusterCount) { in ParseNext() 2699 pResult = m_clusters[next_idx]; in ParseNext()
|
/external/libvpx/libvpx/third_party/libwebm/mkvparser/ |
D | mkvparser.cc | 2696 const long next_idx = pCurr->m_index + 1; in ParseNext() local 2698 if (next_idx < m_clusterCount) { in ParseNext() 2699 pResult = m_clusters[next_idx]; in ParseNext()
|
/external/libaom/libaom/third_party/libwebm/mkvparser/ |
D | mkvparser.cc | 2696 const long next_idx = pCurr->m_index + 1; in ParseNext() local 2698 if (next_idx < m_clusterCount) { in ParseNext() 2699 pResult = m_clusters[next_idx]; in ParseNext()
|
/external/libvpx/libwebm/mkvparser/ |
D | mkvparser.cc | 2696 const long next_idx = pCurr->m_index + 1; in ParseNext() local 2698 if (next_idx < m_clusterCount) { in ParseNext() 2699 pResult = m_clusters[next_idx]; in ParseNext()
|