HomeSort by relevance Sort by last modified time
    Searched refs:idx (Results 276 - 300 of 4325) sorted by null

<<11121314151617181920>>

  /external/toolchain-utils/binary_search_tool/
compiler_wrapper.py 52 for idx, _ in enumerate(execargs):
55 while execargs[idx][0] == '@':
56 args_in_file = ProcessArgFile(execargs[idx][1:])
57 execargs = execargs[0:idx] + args_in_file + execargs[idx + 1:]
  /frameworks/ml/nn/common/operations/
HashtableLookup.cpp 50 int idx = -1; local
54 idx =
58 if (idx >= num_rows || idx < 0) {
62 memcpy(output_->buffer + i * row_bytes, value_->buffer + idx * row_bytes,
  /packages/services/Car/tests/vehiclehal_test/src/com/android/car/vehiclehal/test/
VhalEventVerifier.java 39 public final int idx; field in class:VhalEventVerifier.MismatchedEventPair
44 int idx) {
45 this.idx = idx;
89 resultBuilder.append("Index " + pair.idx + ": Expected "
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.helper/
tuple.include.array.pass.cpp 27 template <class T, std::size_t N, class U, size_t idx>
38 static_assert((std::is_same<typename std::tuple_element<idx, T>::type, U>::value), "");
39 static_assert((std::is_same<typename std::tuple_element<idx, const T>::type, const U>::value), "");
40 static_assert((std::is_same<typename std::tuple_element<idx, volatile T>::type, volatile U>::value), "");
41 static_assert((std::is_same<typename std::tuple_element<idx, const volatile T>::type, const volatile U>::value), "");
tuple.include.utility.pass.cpp 25 template <class T, std::size_t N, class U, size_t idx>
36 static_assert((std::is_same<typename std::tuple_element<idx, T>::type, U>::value), "");
37 static_assert((std::is_same<typename std::tuple_element<idx, const T>::type, const U>::value), "");
38 static_assert((std::is_same<typename std::tuple_element<idx, volatile T>::type, volatile U>::value), "");
39 static_assert((std::is_same<typename std::tuple_element<idx, const volatile T>::type, const volatile U>::value), "");
  /system/bt/stack/avct/
avct_ccb.cc 120 tAVCT_CCB* avct_ccb_by_idx(uint8_t idx) {
124 if (idx < AVCT_NUM_CONN) {
125 p_ccb = &avct_cb.ccb[idx];
130 AVCT_TRACE_WARNING("ccb %d not allocated", idx);
134 AVCT_TRACE_WARNING("No ccb for idx %d", idx);
  /external/elfutils/libdwfl/
derelocate.c 249 dwfl_module_relocation_info (Dwfl_Module *mod, unsigned int idx,
261 if (idx != 0)
276 if (idx >= sections->count)
280 *shndxp = elf_ndxscn (sections->refs[idx].scn);
282 return sections->refs[idx].name;
332 size_t idx = (l + u) / 2; local
333 if (*addr < sections->refs[idx].start)
334 u = idx;
335 else if (*addr > sections->refs[idx].end)
336 l = idx + 1
360 int idx = find_section (mod, addr); local
400 int idx = find_section (mod, address); local
    [all...]
  /device/linaro/bootloader/edk2/StdLib/Include/Lua/
lua.h 144 LUA_API int (lua_absindex) (lua_State *L, int idx);
146 LUA_API void (lua_settop) (lua_State *L, int idx);
147 LUA_API void (lua_pushvalue) (lua_State *L, int idx);
148 LUA_API void (lua_remove) (lua_State *L, int idx);
149 LUA_API void (lua_insert) (lua_State *L, int idx);
150 LUA_API void (lua_replace) (lua_State *L, int idx);
161 LUA_API int (lua_isnumber) (lua_State *L, int idx);
162 LUA_API int (lua_isstring) (lua_State *L, int idx);
163 LUA_API int (lua_iscfunction) (lua_State *L, int idx);
164 LUA_API int (lua_isuserdata) (lua_State *L, int idx);
    [all...]
  /external/syslinux/com32/lua/src/
lua.h 149 LUA_API int (lua_absindex) (lua_State *L, int idx);
151 LUA_API void (lua_settop) (lua_State *L, int idx);
152 LUA_API void (lua_pushvalue) (lua_State *L, int idx);
153 LUA_API void (lua_remove) (lua_State *L, int idx);
154 LUA_API void (lua_insert) (lua_State *L, int idx);
155 LUA_API void (lua_replace) (lua_State *L, int idx);
166 LUA_API int (lua_isnumber) (lua_State *L, int idx);
167 LUA_API int (lua_isstring) (lua_State *L, int idx);
168 LUA_API int (lua_iscfunction) (lua_State *L, int idx);
169 LUA_API int (lua_isuserdata) (lua_State *L, int idx);
    [all...]
  /external/fio/
smalloc.c 76 unsigned int idx, size_t nr_blocks,
90 if (this_blocks + idx > SMALLOC_BPI) {
91 this_blocks = SMALLOC_BPI - idx;
92 idx = SMALLOC_BPI - this_blocks;
98 mask = ((1U << this_blocks) - 1) << idx;
104 idx = 0;
131 unsigned int idx, size_t nr_blocks)
133 return blocks_iter(pool, pool_idx, idx, nr_blocks, mask_cmp);
137 unsigned int idx, size_t nr_blocks)
139 blocks_iter(pool, pool_idx, idx, nr_blocks, mask_set)
295 unsigned int i, idx; local
361 unsigned int idx; local
    [all...]
  /external/freetype/src/autofit/
afshaper.c 119 hb_codepoint_t idx; local
186 for ( idx = HB_SET_VALUE_INVALID; hb_set_next( gsub_lookups, &idx ); )
189 FT_TRACE4(( " %d", idx ));
196 idx,
226 for ( idx = HB_SET_VALUE_INVALID; hb_set_next( gpos_lookups, &idx ); )
229 FT_TRACE4(( " %d", idx ));
236 idx,
275 for ( idx = HB_SET_VALUE_INVALID; hb_set_next( gsub_lookups
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/testing/
parse_testdata.cc 165 for (size_t idx = 0; idx < example.inputs[i].flat_data.size(); idx++) {
166 data[idx] = example.inputs[i].flat_data[idx];
170 for (size_t idx = 0; idx < example.inputs[i].flat_data.size(); idx++) {
171 data[idx] = example.inputs[i].flat_data[idx];
    [all...]
  /external/ltp/testcases/network/stress/ns-tools/
ns-mcast_join.c 296 int idx; local
311 for (idx = 0; idx < num_sock; idx++) {
312 sock_array[idx] = socket(family, SOCK_DGRAM, IPPROTO_UDP);
314 if (sock_array[idx] < 0) {
315 if (idx < OPEN_SOCK_MIN)
320 close(sock_array[idx - 1 - j]);
321 num_group = idx - j - 1;
327 maximize_sockbuf(sock_array[idx]);
    [all...]
  /external/mesa3d/src/amd/common/
sid_tables.py 46 idx = te[1] + len(te[0]) - len(string)
47 te[2].add(idx)
48 return idx
50 idx = self.length
51 self.table.append((string, idx, set((idx,))))
54 return idx
65 ', '.join(str(idx) for idx in te[2])
88 idx =
    [all...]
  /art/runtime/gc/allocator/
rosalloc.cc 331 size_t idx = pm_idx + 1; local
333 while (idx < end && page_map_[idx] == pm_part_type) {
334 page_map_[idx] = kPageMapEmpty;
336 idx++;
546 RosAlloc::Run* RosAlloc::AllocRun(Thread* self, size_t idx) {
550 new_run = reinterpret_cast<Run*>(AllocPages(self, numOfPages[idx], kPageMapRun));
556 new_run->size_bracket_idx_ = idx;
559 if (kUsePrefetchDuringAllocRun && idx < kNumThreadLocalSizeBrackets) {
566 const size_t num_of_slots = numOfSlots[idx];
608 << " into full_runs_[" << std::dec << idx << "]"; local
640 size_t idx = SizeToIndexAndBracketSize(size, &bracket_size); local
659 size_t idx = SizeToIndexAndBracketSize(size, &bracket_size); local
698 << " into full_runs_[" << std::dec << idx << "]"; local
761 const size_t idx = run->size_bracket_idx_; local
829 << " into non_full_runs_[" << std::dec << idx << "]"; local
840 const uint8_t idx = size_bracket_idx_; local
858 size_t idx = size_bracket_idx_; local
874 const uint8_t idx = size_bracket_idx_; local
890 const uint8_t idx = size_bracket_idx_; local
926 const uint8_t idx = size_bracket_idx_; local
940 const uint8_t idx = size_bracket_idx_; local
960 const uint8_t idx = size_bracket_idx_; local
967 size_t idx = size_bracket_idx_; local
1104 size_t idx = run->size_bracket_idx_; local
1193 << " into non_full_runs_[" << std::dec << idx; local
1275 size_t idx = run->size_bracket_idx_; local
1311 size_t idx = pm_idx + 1; local
1333 size_t idx = run->size_bracket_idx_; local
1437 size_t idx = i + 1; local
1552 << " into full_runs_[" << std::dec << idx << "]"; local
1565 << " into non_full_runs_[" << std::dec << idx << "]"; local
1786 size_t idx = i + 1; local
1815 size_t idx = run->size_bracket_idx_; local
1871 const size_t idx = size_bracket_idx_; local
2126 size_t idx = i + 1; local
2142 size_t idx = run->size_bracket_idx_; local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
ClassDefsSection.java 133 int idx = 0; local
144 idx = orderItems0(type, idx, sz - idx);
153 * @param idx {@code >= 0;} the next index to assign
158 private int orderItems0(Type type, int idx, int maxDepth) {
162 return idx;
174 idx = orderItems0(superclass, idx, maxDepth);
180 idx = orderItems0(interfaces.getType(i), idx, maxDepth)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
ClassDefsSection.java 132 int idx = 0; local
143 idx = orderItems0(type, idx, sz - idx);
152 * @param idx {@code >= 0;} the next index to assign
157 private int orderItems0(Type type, int idx, int maxDepth) {
161 return idx;
173 idx = orderItems0(superclass, idx, maxDepth);
179 idx = orderItems0(interfaces.getType(i), idx, maxDepth)
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/plat/mediatek/mt6795/drivers/timer/
mt_cpuxgpt.c 44 unsigned int idx; local
48 idx = mmio_read_32(INDEX_BASE);
50 /* idx 0: CPUXGPT system control */
51 if (idx == 0) {
  /external/libnl/src/lib/
ct.c 148 if (argc > ++idx)
149 nfnl_ct_set_icmp_id(ct, 0, strtoul(argv[idx++], NULL, 0));
151 if (argc > ++idx)
152 nfnl_ct_set_icmp_type(ct, 0, strtoul(argv[idx++], NULL, 0));
154 if (argc > ++idx)
155 nfnl_ct_set_icmp_code(ct, 0, strtoul(argv[idx++], NULL, 0));
157 if (argc > ++idx)
158 nfnl_ct_set_icmp_id(ct, 1, strtoul(argv[idx++], NULL, 0));
160 if (argc > ++idx)
161 nfnl_ct_set_icmp_type(ct, 1, strtoul(argv[idx++], NULL, 0))
    [all...]
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.h 42 uint16_t getFormByIndex(uint32_t idx) const {
43 return idx < AttributeSpecs.size() ? AttributeSpecs[idx].Form : 0;
  /external/mesa3d/src/compiler/glsl/
lower_vec_index_to_swizzle.cpp 66 ir_constant *const idx = expr->operands[1]->constant_expression_value(); local
67 if (idx == NULL)
87 const int i = CLAMP(idx->value.i[0], 0,
  /external/skia/src/gpu/
GrProcessorSet.h 40 const GrFragmentProcessor* colorFragmentProcessor(int idx) const {
41 SkASSERT(idx < fColorFragmentProcessorCnt);
42 return fFragmentProcessors[idx + fFragmentProcessorOffset].get();
44 const GrFragmentProcessor* coverageFragmentProcessor(int idx) const {
45 return fFragmentProcessors[idx + fColorFragmentProcessorCnt +
58 std::unique_ptr<const GrFragmentProcessor> detachColorFragmentProcessor(int idx) {
59 SkASSERT(idx < fColorFragmentProcessorCnt);
60 return std::move(fFragmentProcessors[idx + fFragmentProcessorOffset]);
63 std::unique_ptr<const GrFragmentProcessor> detachCoverageFragmentProcessor(int idx) {
65 fFragmentProcessors[idx + fFragmentProcessorOffset + fColorFragmentProcessorCnt])
    [all...]
  /external/skqp/src/gpu/
GrProcessorSet.h 40 const GrFragmentProcessor* colorFragmentProcessor(int idx) const {
41 SkASSERT(idx < fColorFragmentProcessorCnt);
42 return fFragmentProcessors[idx + fFragmentProcessorOffset].get();
44 const GrFragmentProcessor* coverageFragmentProcessor(int idx) const {
45 return fFragmentProcessors[idx + fColorFragmentProcessorCnt +
58 std::unique_ptr<const GrFragmentProcessor> detachColorFragmentProcessor(int idx) {
59 SkASSERT(idx < fColorFragmentProcessorCnt);
60 return std::move(fFragmentProcessors[idx + fFragmentProcessorOffset]);
63 std::unique_ptr<const GrFragmentProcessor> detachCoverageFragmentProcessor(int idx) {
65 fFragmentProcessors[idx + fFragmentProcessorOffset + fColorFragmentProcessorCnt])
    [all...]
  /external/testng/src/main/java/org/testng/junit/
JUnit4TestMethod.java 26 int idx = method.indexOf('['); local
27 if (idx != -1) {
28 method = method.substring(0, idx);
  /external/toybox/toys/other/
vmstat.c 90 unsigned idx = loop&1, offset = 0, expected = 0; local
91 uint64_t units, total_hz, *ptr = (uint64_t *)(top+idx),
92 *oldptr = (uint64_t *)(top+!idx);
112 get_vmstat_proc(top+idx);
113 top[idx].running--; // Don't include ourselves
114 top[idx].user += top[idx].nice;
115 top[idx].sys += top[idx].irq + top[idx].sirq
    [all...]

Completed in 598 milliseconds

<<11121314151617181920>>