Searched defs:ndx (Results 1 - 25 of 90) sorted by relevance

1234

/external/ltrace/sysdeps/linux-gnu/aarch64/
H A Dplt.c35 arch_plt_sym_val(struct ltelf *lte, size_t ndx, GElf_Rela *rela) argument
37 return lte->plt_addr + 32 + ndx * 16;
/external/ltrace/sysdeps/linux-gnu/alpha/
H A Dplt.c26 arch_plt_sym_val(struct ltelf *lte, size_t ndx, GElf_Rela *rela) argument
28 return lte->plt_addr + ndx * 12 + 32;
/external/ltrace/sysdeps/linux-gnu/cris/
H A Dplt.c26 GElf_Addr arch_plt_sym_val(struct ltelf *lte, size_t ndx, GElf_Rela * rela) argument
28 return lte->plt_addr + 0x20 + (ndx * 26);
/external/ltrace/sysdeps/linux-gnu/m68k/
H A Dplt.c27 arch_plt_sym_val(struct ltelf *lte, size_t ndx, GElf_Rela * rela) { argument
28 return lte->plt_addr + (ndx + 1)
/external/ltrace/sysdeps/linux-gnu/metag/
H A Dplt.c29 arch_plt_sym_val(struct ltelf *lte, size_t ndx, GElf_Rela * rela) argument
31 return lte->plt_addr + ( ndx * 0x14 ) + 0x14;
/external/ltrace/sysdeps/linux-gnu/sparc/
H A Dplt.c26 arch_plt_sym_val(struct ltelf *lte, size_t ndx, GElf_Rela * rela) { argument
/external/elfutils/src/libelf/
H A Dgelf_update_phdr.c41 gelf_update_phdr (Elf *elf, int ndx, GElf_Phdr *src) argument
84 if (ndx >= elf->state.elf32.ehdr->e_phnum
87 || (size_t) ndx >= phnum))
94 phdr += ndx;
121 if (ndx >= elf->state.elf64.ehdr->e_phnum
124 || (size_t) ndx >= phnum))
131 memcpy (phdr + ndx, src, sizeof (Elf64_Phdr));
H A Dgelf_update_rel.c41 gelf_update_rel (Elf_Data *dst, int ndx, GElf_Rel *src) argument
75 if (INVALID_NDX (ndx, Elf32_Rel, &data_scn->d))
81 rel = &((Elf32_Rel *) data_scn->d.d_buf)[ndx];
90 if (INVALID_NDX (ndx, Elf64_Rel, &data_scn->d))
96 ((Elf64_Rel *) data_scn->d.d_buf)[ndx] = *src;
H A Dgelf_update_rela.c41 gelf_update_rela (Elf_Data *dst, int ndx, GElf_Rela *src) argument
77 if (INVALID_NDX (ndx, Elf32_Rela, &data_scn->d))
83 rel = &((Elf32_Rela *) data_scn->d.d_buf)[ndx];
93 if (INVALID_NDX (ndx, Elf64_Rela, &data_scn->d))
99 ((Elf64_Rela *) data_scn->d.d_buf)[ndx] = *src;
/external/deqp/framework/common/
H A DtcuArray.hpp41 inline T operator[] (int ndx) const { return m_data[ndx]; }
42 inline T& operator[] (int ndx) { return m_data[ndx]; } argument
/external/deqp/framework/delibs/debase/
H A DdeInt32Test.c38 int ndx; local
44 for (ndx = 0; ndx < (1<<RCP_LUT_BITS); ndx++)
46 deUint32 val = (1u << RCP_LUT_BITS) | ndx;
49 if ((ndx & 3) == 0)
54 if ((ndx & 3) == 3)
56 if (ndx != (1<<RCP_LUT_BITS)-1)
H A DdeMathTest.c79 int ndx; local
97 for (ndx = 0; ndx < numIterations; ++ndx)
/external/deqp/framework/delibs/depool/
H A DdePoolHash.c118 int ndx; local
132 for (ndx = 0; ndx < numElements; ndx++)
134 deInt16 key = deTestInt16Array_get(keyArray, ndx);
135 int val = deTestIntArray_get(valueArray, ndx);
/external/ltrace/sysdeps/linux-gnu/ia64/
H A Dplt.c52 arch_plt_sym_val(struct ltelf *lte, size_t ndx, GElf_Rela * rela) argument
64 (2 * ndx * BUNDLE_SIZE);
65 debug(3, "Found PLT %zd entry at %lx", ndx, addr);
/external/ltrace/sysdeps/linux-gnu/s390/
H A Dplt.c31 arch_plt_sym_val(struct ltelf *lte, size_t ndx, GElf_Rela * rela) { argument
32 return lte->plt_addr + (ndx + 1) * 32;
43 const char *a_name, GElf_Rela *rela, size_t ndx,
54 ndx, ret);
42 arch_elf_add_plt_entry(struct process *proc, struct ltelf *lte, const char *a_name, GElf_Rela *rela, size_t ndx, struct library_symbol **ret) argument
/external/deqp/framework/delibs/decpp/
H A DdePoolArray.cpp275 for (int ndx = 0; ndx < 128; ndx++)
276 arr.pushBack(ndx);
281 int ndx = 0; local
282 for (PoolArray<int>::ConstIterator iter = cRef.begin(); iter != cRef.end(); iter++, ndx++)
284 DE_TEST_ASSERT(*iter == ndx);
288 ndx = 0;
289 for (PoolArray<int>::ConstIterator iter = arr.begin(); iter != arr.end(); iter++, ndx++)
291 DE_TEST_ASSERT(*iter == ndx);
328 int ndx = 0; local
[all...]
H A DdeRingBuffer.hpp103 for (int ndx = 0; ndx < m_numElements; ndx++)
104 buf[ndx] = m_buffer[(m_back + ndx) % m_size];
144 int ndx = m_back; local
147 return m_buffer[ndx];
H A DdeThreadSafeRingBuffer.hpp88 int ndx = m_back; local
90 return m_buffer[ndx];
H A DdeRandom.hpp109 int ndx; local
110 for (ndx = 0; first != last; ++first, ++ndx)
112 if (ndx < numItems)
113 *(result + ndx) = *first;
116 int r = getInt(0, ndx);
122 DE_ASSERT(ndx >= numItems);
139 int ndx; local
140 for (ndx = 0; (first + ndx) !
[all...]
/external/ltrace/sysdeps/linux-gnu/x86/
H A Dplt.c39 arch_plt_sym_val(struct ltelf *lte, size_t ndx, GElf_Rela *rela) argument
41 uint32_t i = *VECT_ELEMENT(&lte->arch.plt_map, uint32_t, ndx);
53 const char *a_name, GElf_Rela *rela, size_t ndx,
70 ndx, ret);
52 arch_elf_add_plt_entry(struct process *proc, struct ltelf *lte, const char *a_name, GElf_Rela *rela, size_t ndx, struct library_symbol **ret) argument
/external/deqp/framework/opengl/
H A DgluVarTypeUtil.cpp117 int ndx = 0; local
118 for (; ndx < curType.getStructPtr()->getNumMembers(); ndx++)
120 if (memberName == curType.getStructPtr()->getMember(ndx).getName())
123 TCU_CHECK_MSG(ndx < curType.getStructPtr()->getNumMembers(), "Member not found in type");
125 path.push_back(VarTypeComponent(VarTypeComponent::STRUCT_MEMBER, ndx));
133 int ndx = tokenizer.getNumber(); local
137 TCU_CHECK(de::inBounds(ndx, 0, curType.getArraySize()));
138 path.push_back(VarTypeComponent(VarTypeComponent::ARRAY_ELEMENT, ndx));
142 TCU_CHECK(de::inBounds(ndx,
[all...]
/external/elfutils/src/libdwfl/
H A Ddwfl_module_getsym.c33 __libdwfl_getsym (Dwfl_Module *mod, int ndx, GElf_Sym *sym, GElf_Addr *addr, argument
52 int tndx = ndx;
59 || ndx < mod->first_global)
62 tndx = ndx;
68 else if (ndx < mod->first_global + mod->aux_first_global - skip_aux_zero)
71 tndx = ndx - mod->first_global + skip_aux_zero;
77 else if ((size_t) ndx < mod->syments + mod->aux_first_global - skip_aux_zero)
80 tndx = ndx - mod->aux_first_global + skip_aux_zero;
89 tndx = ndx - mod->syments + skip_aux_zero;
197 dwfl_module_getsym_info (Dwfl_Module *mod, int ndx, argument
[all...]
/external/deqp/executor/
H A DxeBatchResult.hpp112 ConstTestCaseResultPtr getTestCaseResult (int ndx) const { return ConstTestCaseResultPtr(m_testCaseResults[ndx]); }
113 TestCaseResultPtr getTestCaseResult (int ndx) { return m_testCaseResults[ndx]; } argument
H A DxeContainerFormatParser.cpp113 for (int ndx = 0; ndx < numBytes; ndx++)
114 dst[ndx] = m_buf.peekBack(offset+ndx);
212 int ndx = 0; local
216 int bufChar = (offset+ndx < m_elementLen) ? getChar(offset+ndx) : 0;
218 int elemChar = s_elements[elemNdx].name[ndx];
229 ndx
[all...]
/external/deqp/framework/delibs/deimage/
H A DdeTarga.c159 int ndx; local
161 for (ndx = 0; ndx < width * height; ndx++)
163 deUint32 c = pixels[ndx];

Completed in 387 milliseconds

1234