Home
last modified time | relevance | path

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

/external/squashfs-tools/kernel/fs/squashfs/
Dblock.c47 u64 *cur_index, int *offset, int *length) in get_block_length() argument
52 bh = sb_bread(sb, *cur_index); in get_block_length()
59 bh = sb_bread(sb, ++(*cur_index)); in get_block_length()
88 u64 cur_index = index >> msblk->devblksize_log2; in squashfs_read_data() local
114 for (b = 0; bytes < length; b++, cur_index++) { in squashfs_read_data()
115 bh[b] = sb_getblk(sb, cur_index); in squashfs_read_data()
128 bh[0] = get_block_length(sb, &cur_index, &offset, &length); in squashfs_read_data()
147 bh[b] = sb_getblk(sb, ++cur_index); in squashfs_read_data()
271 ERROR("sb_bread failed reading block 0x%llx\n", cur_index); in squashfs_read_data()
/external/iproute2/ip/
Dipmaddr.c229 int cur_index = 0; in print_mlist() local
233 cur_index = list->index; in print_mlist()
234 fprintf(fp, "%d:\t%s%s", cur_index, list->name, _SL_); in print_mlist()
235 } else if (cur_index != list->index) { in print_mlist()
236 cur_index = list->index; in print_mlist()
237 fprintf(fp, "%d:\t%s\n", cur_index, list->name); in print_mlist()
/external/tensorflow/tensorflow/contrib/nearest_neighbor/kernels/
Dhyperplane_lsh_probes.h158 int_fast32_t cur_index = in GetNextProbe() local
170 (HashType(1) << (num_hyperplanes_per_table_ - cur_index - 1)) ^ in GetNextProbe()
174 hash_vector_[*cur_table * num_hyperplanes_per_table_ + cur_index]; in GetNextProbe()
/external/autotest/client/site_tests/platform_CompressedSwapPerf/
Dplatform_CompressedSwapPerf.py13 def selection_sequential(cur_index, length): argument
21 return cur_index
23 def selection_exp(cur_index, length): argument
40 def selection_uniform(cur_index, length): argument
/external/u-boot/drivers/core/
Dof_access.c531 int rc = 0, cur_index = 0; in __of_parse_phandle_with_args() local
563 if (cells_name || cur_index == index) { in __of_parse_phandle_with_args()
601 if (cur_index == index) { in __of_parse_phandle_with_args()
625 cur_index++; in __of_parse_phandle_with_args()
634 rc = index < 0 ? cur_index : -ENOENT; in __of_parse_phandle_with_args()
/external/toolchain-utils/crosperf/
Dresults_report.py383 cur_index = 1
386 label, cur_row_data[cur_index].value,
387 cur_row_data[cur_index + 1].value, cur_row_data[cur_index + 2].value
389 if isinstance(cur_row_data[cur_index].value, str):
392 cur_index += 3
/external/squashfs-tools/kernel-2.4/fs/squashfs/
Dinode.c89 int *cur_index, int *offset, int *c_byte) in get_block_length() argument
95 if (!(bh = sb_bread(s, *cur_index))) in get_block_length()
106 if (!(bh = sb_bread(s, ++(*cur_index)))) in get_block_length()
135 if (!(bh = sb_bread(s, ++(*cur_index)))) in get_block_length()
142 *cur_index); in get_block_length()
163 unsigned int cur_index = index >> msblk->devblksize_log2; in squashfs_read_data() local
178 if (!(bh[0] = sb_getblk(s, cur_index))) in squashfs_read_data()
182 if (!(bh[b] = sb_getblk(s, ++cur_index))) in squashfs_read_data()
188 if (!(bh[0] = get_block_length(s, &cur_index, &offset, in squashfs_read_data()
201 if (!(bh[b] = sb_getblk(s, ++cur_index))) in squashfs_read_data()
[all …]
/external/u-boot/lib/
Dfdtdec.c728 int rc = 0, size, cur_index = 0; in fdtdec_parse_phandle_with_args() local
759 if (cells_name || cur_index == index) { in fdtdec_parse_phandle_with_args()
804 if (cur_index == index) { in fdtdec_parse_phandle_with_args()
831 cur_index++; in fdtdec_parse_phandle_with_args()
840 rc = index < 0 ? cur_index : -ENOENT; in fdtdec_parse_phandle_with_args()
/external/deqp-deps/SPIRV-Tools/source/val/
Dvalidate_memory.cpp873 const uint32_t cur_index = cur_word_instr->word(3); in ValidateAccessChain() local
878 if (cur_index >= num_struct_members) { in ValidateAccessChain()
881 << " can not find index " << cur_index in ValidateAccessChain()
888 auto structMemberId = type_pointee->word(cur_index + 2); in ValidateAccessChain()
/external/scapy/scapy/contrib/
Dpnio_rtc.py181 cur_index = -len(_pkt)
183 if cur_index == index:
/external/swiftshader/third_party/SPIRV-Tools/source/val/
Dvalidate_memory.cpp1037 const uint32_t cur_index = cur_word_instr->word(3); in ValidateAccessChain() local
1042 if (cur_index >= num_struct_members) { in ValidateAccessChain()
1045 << " can not find index " << cur_index in ValidateAccessChain()
1052 auto structMemberId = type_pointee->word(cur_index + 2); in ValidateAccessChain()
/external/v8/src/wasm/
Dfunction-body-decoder-impl.h360 unsigned cur_index() { return index_; } in cur_index() function
1660 const uint32_t i = iterator.cur_index(); in DecodeFunctionBody()
Dfunction-body-decoder.cc326 uint32_t i = iterator.cur_index(); in BrTable()
Dwasm-interpreter.cc879 uint32_t j = iterator.cur_index(); in SideTable()
/external/v8/src/wasm/baseline/
Dliftoff-compiler.cc1255 DCHECK_EQ(min, table_iterator.cur_index()); in GenerateBrTable()