HomeSort by relevance Sort by last modified time
    Searched refs:arange (Results 1 - 23 of 23) sorted by null

  /external/elfutils/libdw/
dwarf_getarangeinfo.c 38 dwarf_getarangeinfo (Dwarf_Arange *arange, Dwarf_Addr *addrp,
41 if (arange == NULL)
45 *addrp = arange->addr;
47 *lengthp = arange->length;
49 *offsetp = arange->offset;
dwarf_getaranges.c 41 Dwarf_Arange arange; member in struct:arangelist
51 if (l1->arange.addr != l2->arange.addr)
52 return (l1->arange.addr < l2->arange.addr) ? -1 : 1;
194 new_arange->arange.addr = range_address;
195 new_arange->arange.length = range_length;
205 new_arange->arange.offset = DIE_OFFSET_FROM_CU_OFFSET (offset,
214 if (unlikely (new_arange->arange.offset
268 (*aranges)->info[i] = elt->arange;
    [all...]
libdw.h 797 extern int dwarf_getarangeinfo (Dwarf_Arange *arange, Dwarf_Addr *addrp,
    [all...]
  /external/elfutils/libdwfl/
cu.c 38 return &mod->dw->aranges->info[mod->aranges[idx].arange];
43 addrarange (Dwfl_Module *mod, Dwarf_Addr addr, struct dwfl_arange **arange)
73 aranges[naranges].arange = i;
121 *arange = &mod->aranges[idx];
293 /* Intern the CU arange points to, if necessary. */
296 arangecu (Dwfl_Module *mod, struct dwfl_arange *arange, struct dwfl_cu **cu)
298 if (arange->cu == NULL)
300 const Dwarf_Arange *dwarange = &mod->dw->aranges->info[arange->arange];
301 Dwfl_Error result = intern_cu (mod, dwarange->offset, &arange->cu)
316 struct dwfl_arange *arange; local
    [all...]
libdwflP.h 404 size_t arange; /* Index in Dwarf_Aranges. */ member in struct:dwfl_arange
  /external/elfutils/tests/
get-aranges.c 99 Dwarf_Arange *arange = dwarf_onearange (aranges, i); local
100 if (arange == NULL)
102 printf ("cannot get arange %zu: %s\n", i, dwarf_errmsg (-1));
110 if (dwarf_getarangeinfo (arange, &start, &length, &cu_offset)
  /toolchain/binutils/binutils-2.25/bfd/
dwarf2.c 193 struct arange struct
195 struct arange *next;
217 struct arange arange; member in struct:comp_unit
1169 struct arange arange; member in struct:funcinfo
1397 struct arange *arange; local
2006 struct arange *arange; local
2053 struct arange *arange; local
2717 struct arange *arange; local
3198 struct arange *arange; local
    [all...]
  /external/opencv3/samples/python2/
kmeans.py 27 colors[0,:,0] = np.arange(0, 180, 180.0/cluster_n)
opt_flow.py 43 flow[:,:,0] += np.arange(w)
44 flow[:,:,1] += np.arange(h)[:,np.newaxis]
gabor_threads.py 25 for theta in np.arange(0, np.pi, np.pi / 16):
hist.py 21 bins = np.arange(256).reshape(256,1)
asift.py 77 for t in 2**(0.5*np.arange(1,6)):
78 for phi in np.arange(0, 180, 72.0 / t):
letter_recog.py 49 new_samples[:,-1] = np.tile(np.arange(self.class_n), sample_n)
55 resp_idx = np.int32( responses + np.arange(sample_n)*self.class_n )
digits.py 56 labels = np.repeat(np.arange(CLASS_N), len(digits)/CLASS_N)
digits_adjust.py 38 folds = np.array_split(np.arange(n), kfold)
  /cts/apps/CameraITS/tests/scene5/
test_lens_shading_and_color_uniformity.py 41 SPB_CT_LIST = numpy.arange(spb_r, 1/2., spb_r*2)
122 (numpy.arange(spb_ct, 1-spb_ct+spb_r, spb_r*2),
125 numpy.arange(spb_ct, 1-spb_ct+spb_r, spb_r*2)))
128 numpy.arange(spb_ct+spb_r*2, 1-spb_ct, spb_r*2),
129 numpy.arange(spb_ct+spb_r*2, 1-spb_ct, spb_r*2),
  /external/valgrind/coregrind/m_debuginfo/
debuginfo.c 282 DiAddrRange* arange = VG_(OSetGen_Next)(scope); local
283 if (!arange) break;
284 /* for each var in 'arange' */
285 vg_assert(arange->vars);
286 for (j = 0; j < VG_(sizeXA)( arange->vars ); j++) {
287 DiVariable* var = (DiVariable*)VG_(indexXA)(arange->vars,j);
293 VG_(deleteXA)(arange->vars);
294 /* Don't free arange itself, as OSetGen_Destroy does
3599 DiAddrRange* arange; local
4040 DiAddrRange* arange; local
    [all...]
  /external/freetype/include/internal/
sfnt.h 193 /* arange :: The SBit range containing the glyph index. */
208 TT_SBit_Range *arange,
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/include/freetype/internal/
sfnt.h 197 /* arange :: The SBit range containing the glyph index. */
212 TT_SBit_Range *arange,
    [all...]
  /external/pdfium/third_party/freetype/include/freetype/internal/
sfnt.h 197 /* arange :: The SBit range containing the glyph index. */
212 TT_SBit_Range *arange,
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
dwarf.c 5083 DWARF2_Internal_ARange arange; local
    [all...]
  /external/opencv3/modules/python/test/
camera_calibration.py 166 x = numpy.arange(self.w*self.h) % self.w
167 y = numpy.floor(numpy.arange(self.w*self.h) / self.w)
  /system/extras/tests/sdcard/
plot_sdcard.py 211 x = numpy.arange(len(dataset.data), dtype='int_')

Completed in 902 milliseconds