Searched defs:idx (Results 601 - 625 of 1374) sorted by relevance

<<21222324252627282930>>

/external/libsepol/src/
H A Dmodule.c855 int idx = 0; local
864 if (put_entry(&data[idx], 1, len2, file) != len2) {
868 idx += len2;
/external/libvpx/libvpx/build/make/
H A Dobj_int_extract.c300 int parse_elf_section(elf_obj_t *elf, int idx, Elf32_Shdr *hdr32, Elf64_Shdr *hdr64) { argument
302 if (idx >= elf->hdr32.e_shnum)
305 COPY_STRUCT(hdr32, elf->buf, elf->hdr32.e_shoff + idx * elf->hdr32.e_shentsize,
318 if (idx >= elf->hdr64.e_shnum)
321 COPY_STRUCT(hdr64, elf->buf, elf->hdr64.e_shoff + idx * elf->hdr64.e_shentsize,
340 const char *parse_elf_string_table(elf_obj_t *elf, int s_idx, int idx) { argument
346 s_idx, idx);
350 return (char *)(elf->buf + shdr.sh_offset + idx);
356 s_idx, idx);
360 return (char *)(elf->buf + shdr.sh_offset + idx);
[all...]
/external/libvpx/libvpx/test/
H A Dexternal_frame_buffer_test.cc64 const int idx = FindFreeBufferIndex(); local
65 if (idx == num_buffers_)
68 if (ext_fb_list_[idx].size < min_size) {
69 delete [] ext_fb_list_[idx].data;
70 ext_fb_list_[idx].data = new uint8_t[min_size];
71 ext_fb_list_[idx].size = min_size;
74 SetFrameBuffer(idx, fb);
82 const int idx = FindFreeBufferIndex(); local
83 if (idx == num_buffers_)
86 if (ext_fb_list_[idx]
135 SetFrameBuffer(int idx, vpx_codec_frame_buffer_t *fb) argument
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_encodemv.c251 int idx, idy; local
254 for (idx = 0; idx < 2; idx += num_4x4_w) {
255 const int i = idy * 2 + idx;
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/
H A Dbrowser.c581 unsigned int row = 0, idx = browser->top_idx; local
588 while (idx < browser->nr_entries) {
596 ++idx;
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Devsel.h67 int idx; member in struct:perf_evsel
102 struct perf_evsel *perf_evsel__new(struct perf_event_attr *attr, int idx);
103 struct perf_evsel *perf_evsel__newtp(const char *sys, const char *name, int idx);
108 struct perf_event_attr *attr, int idx);
313 return evsel->idx - evsel->leader->idx;
/external/lldb/include/lldb/Target/
H A DPlatform.h80 GetConnectedRemotePlatformAtIndex (uint32_t idx);
338 /// @param[in] idx
350 GetSupportedArchitectureAtIndex (uint32_t idx, ArchSpec &arch) = 0;
694 GetAtIndex (uint32_t idx) argument
699 if (idx < m_platforms.size())
700 platform_sp = m_platforms[idx];
731 for (size_t idx=0; idx<num_platforms; ++idx)
733 if (m_platforms[idx]
[all...]
/external/lldb/source/API/
H A DSBType.cpp321 SBType::GetDirectBaseClassAtIndex (uint32_t idx) argument
330 ClangASTType base_class_type (this_type.GetDirectBaseClassAtIndex(idx, &bit_offset));
342 SBType::GetVirtualBaseClassAtIndex (uint32_t idx) argument
351 ClangASTType base_class_type (this_type.GetVirtualBaseClassAtIndex(idx, &bit_offset));
362 SBType::GetFieldAtIndex (uint32_t idx) argument
374 ClangASTType field_type (this_type.GetFieldAtIndex (idx,
428 SBType::GetTemplateArgumentType (uint32_t idx) argument
433 ClangASTType template_arg_type = m_opaque_sp->GetClangASTType().GetTemplateArgument (idx, kind);
442 SBType::GetTemplateArgumentKind (uint32_t idx) argument
446 m_opaque_sp->GetClangASTType().GetTemplateArgument (idx, kin
[all...]
/external/lldb/source/Commands/
H A DCommandObjectFrame.cpp395 size_t idx; local
416 for (idx = 0; (name_cstr = command.GetArgumentAtIndex(idx)) != NULL; ++idx)
/external/lldb/source/Core/
H A DLog.cpp455 uint32_t idx = 0; local
457 for (idx = 0; (name = PluginManager::GetLogChannelCreateNameAtIndex (idx)) != NULL; ++idx)
H A DSection.cpp323 SectionList::DeleteSection (size_t idx) argument
325 if (idx < m_sections.size())
327 m_sections.erase (m_sections.begin() + idx);
397 SectionList::GetSectionAtIndex (size_t idx) const
400 if (idx < m_sections.size())
401 sect_sp = m_sections[idx];
461 for (size_t idx = start_idx; idx < num_sections; ++idx)
463 if (m_sections[idx]
[all...]
/external/lldb/source/Interpreter/
H A DOptionValueProperties.cpp122 size_t idx = m_name_to_index.Find (key.GetCString(), SIZE_MAX); local
123 if (idx < m_properties.size())
124 value_sp = GetPropertyAtIndex(exe_ctx, will_modify, idx)->GetValue();
229 OptionValueProperties::GetPropertyNameAtIndex (uint32_t idx) const
231 const Property *property = GetPropertyAtIndex(NULL, false, idx);
239 OptionValueProperties::GetPropertyDescriptionAtIndex (uint32_t idx) const
241 const Property *property = GetPropertyAtIndex(NULL, false, idx);
260 OptionValueProperties::GetPropertyAtIndex (const ExecutionContext *exe_ctx, bool will_modify, uint32_t idx) const
262 return ProtectedGetPropertyAtIndex (idx);
268 uint32_t idx) cons
304 GetPropertyAtIndexAsArgs(const ExecutionContext *exe_ctx, uint32_t idx, Args &args) const argument
327 SetPropertyAtIndexFromArgs(const ExecutionContext *exe_ctx, uint32_t idx, const Args &args) argument
350 GetPropertyAtIndexAsBoolean(const ExecutionContext *exe_ctx, uint32_t idx, bool fail_value) const argument
363 SetPropertyAtIndexAsBoolean(const ExecutionContext *exe_ctx, uint32_t idx, bool new_value) argument
388 GetPropertyAtIndexAsEnumeration(const ExecutionContext *exe_ctx, uint32_t idx, int64_t fail_value) const argument
401 SetPropertyAtIndexAsEnumeration(const ExecutionContext *exe_ctx, uint32_t idx, int64_t new_value) argument
443 SetPropertyAtIndexAsFileSpec(const ExecutionContext *exe_ctx, uint32_t idx, const FileSpec &new_file_spec) argument
482 GetPropertyAtIndexAsSInt64(const ExecutionContext *exe_ctx, uint32_t idx, int64_t fail_value) const argument
495 SetPropertyAtIndexAsSInt64(const ExecutionContext *exe_ctx, uint32_t idx, int64_t new_value) argument
508 GetPropertyAtIndexAsString(const ExecutionContext *exe_ctx, uint32_t idx, const char *fail_value) const argument
521 SetPropertyAtIndexAsString(const ExecutionContext *exe_ctx, uint32_t idx, const char *new_value) argument
544 GetPropertyAtIndexAsUInt64(const ExecutionContext *exe_ctx, uint32_t idx, uint64_t fail_value) const argument
557 SetPropertyAtIndexAsUInt64(const ExecutionContext *exe_ctx, uint32_t idx, uint64_t new_value) argument
[all...]
/external/lldb/source/Plugins/Platform/FreeBSD/
H A DPlatformFreeBSD.cpp244 for (uint32_t idx = 0; GetSupportedArchitectureAtIndex (idx, platform_arch); ++idx)
260 if (idx > 0)
612 PlatformFreeBSD::GetSupportedArchitectureAtIndex (uint32_t idx, ArchSpec &arch) argument
615 if (idx == 0)
620 else if (idx == 1)
627 // returned the 64 bit arch for idx == 0, return the 32 bit arch
628 // for idx == 1
/external/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformRemoteiOS.cpp251 for (uint32_t idx = 0; GetSupportedArchitectureAtIndex (idx, platform_arch); ++idx)
268 if (idx > 0)
786 PlatformRemoteiOS::GetSupportedArchitectureAtIndex (uint32_t idx, ArchSpec &arch) argument
788 return ARMGetSupportedArchitectureAtIndex (idx, arch);
/external/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp144 PlatformRemoteGDBServer::GetSupportedArchitectureAtIndex (uint32_t idx, ArchSpec &arch) argument
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugInfoEntry.h419 SetSiblingIndex (uint32_t idx) argument
421 m_sibling_idx = idx;
425 SetParentIndex (uint32_t idx) argument
427 m_parent_idx = idx;
/external/lldb/source/Plugins/SymbolFile/Symtab/
H A DSymbolFileSymtab.cpp154 SymbolFileSymtab::ParseCompileUnitAtIndex(uint32_t idx) argument
160 if (idx < m_source_indexes.size())
162 const Symbol *cu_symbol = m_obj_file->GetSymtab()->SymbolAtIndex(m_source_indexes[idx]);
208 uint32_t idx = 0; // Index into the indexes local
210 for (idx = 0; idx < num_indexes; ++idx)
212 uint32_t symbol_idx = m_code_indexes[idx];
223 else if (idx + 1 < num_indexes)
225 next_symbol = symtab->SymbolAtIndex(m_code_indexes[idx
[all...]
/external/lldb/source/Symbol/
H A DLineTable.cpp172 LineTable::GetLineEntryAtIndex(uint32_t idx, LineEntry& line_entry) argument
174 if (idx < m_entries.size())
176 ConvertEntryAtIndexToLineEntry (idx, line_entry);
261 LineTable::ConvertEntryAtIndexToLineEntry (uint32_t idx, LineEntry &line_entry) argument
263 if (idx < m_entries.size())
265 const Entry& entry = m_entries[idx];
269 if (!entry.is_terminal_entry && idx + 1 < m_entries.size())
270 line_entry.range.SetByteSize(m_entries[idx+1].file_addr - entry.file_addr);
304 for (size_t idx = start_idx; idx < coun
[all...]
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachThreadList.cpp105 for (size_t idx = 0; idx < num_threads; ++idx)
107 if (m_threads[idx]->ThreadID() == tid)
109 thread_sp = m_threads[idx];
122 for (size_t idx = 0; idx < num_threads; ++idx)
124 if (m_threads[idx]->MachPortNumber() == mach_port_number)
126 thread_sp = m_threads[idx];
287 size_t idx; local
[all...]
/external/llvm/include/llvm/IR/
H A DCFG.h115 unsigned idx; member in class:llvm::SuccIterator
118 inline bool index_is_valid(int idx) { argument
119 return idx >= 0 && (unsigned) idx < Term->getNumSuccessors();
135 it.Term->setSuccessor(it.idx, r);
143 explicit inline SuccIterator(Term_ T) : Term(T), idx(0) {// begin iterator
148 idx = Term->getNumSuccessors();
155 idx = 0;
160 idx = I.idx;
[all...]
/external/llvm/lib/CodeGen/AsmPrinter/
H A DEHStreamer.cpp496 unsigned idx = 0; local
498 I = CallSites.begin(), E = CallSites.end(); I != E; ++I, ++idx) {
504 Asm->OutStreamer.AddComment(">> Call Site " + Twine(idx) + " <<");
505 Asm->OutStreamer.AddComment(" On exception at call site "+Twine(idx));
507 Asm->EmitULEB128(idx);
/external/llvm/lib/CodeGen/
H A DMachineSSAUpdater.cpp253 unsigned idx; member in class:llvm::SSAUpdaterTraits::PHI_iterator
257 : PHI(P), idx(1) {}
259 : PHI(P), idx(PHI->getNumOperands()) {}
261 PHI_iterator &operator++() { idx += 2; return *this; }
262 bool operator==(const PHI_iterator& x) const { return idx == x.idx; }
264 unsigned getIncomingValue() { return PHI->getOperand(idx).getReg(); }
266 return PHI->getOperand(idx+1).getMBB();
/external/llvm/lib/Target/PowerPC/
H A DPPCMachineFunctionInfo.h118 void setReturnAddrSaveIndex(int idx) { ReturnAddrSaveIndex = idx; } argument
168 void setCRSpillFrameIndex(int idx) { CRSpillFrameIndex = idx; } argument
/external/ltrace/sysdeps/linux-gnu/ia64/
H A Dfetch.c143 unsigned long idx = -cfm.cfm.sof + reg_num; local
144 unsigned long *ptr = ia64_rse_skip_regs(bsp, idx);
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi_aos.c412 unsigned idx; local
414 for (idx = first; idx <= last; ++idx) {
417 assert(idx < LP_MAX_TGSI_TEMPS);
423 bld->temps[idx] = lp_build_alloca(gallivm, vec_type, "");
428 bld->outputs[idx] = lp_build_alloca(gallivm, vec_type, "");
432 assert(idx < LP_MAX_TGSI_ADDRS);
433 bld->addr[idx] = lp_build_alloca(gallivm, vec_type, "");
437 assert(idx < LP_MAX_TGSI_PRED
[all...]

Completed in 454 milliseconds

<<21222324252627282930>>