HomeSort by relevance Sort by last modified time
    Searched defs:hsize (Results 1 - 19 of 19) sorted by null

  /external/elfutils/tests/
show-abbrev.c 45 size_t hsize; local
46 while (dwarf_nextcu (dbg, cuoff, &cuoff, &hsize, NULL, NULL, NULL) == 0)
50 if (dwarf_offdie (dbg, old_cuoff + hsize, &die) == NULL)
dwarf-die-addr-die.c 86 size_t hsize; local
90 while (dwarf_nextcu (dbg, off, &off, &hsize, &abbrev, &addresssize,
94 if (dwarf_offdie (dbg, old_off + hsize, &die) != NULL)
109 while (dwarf_next_unit (dbg, off, &off, &hsize, &version, &abbrev,
113 if (dwarf_offdie_types (dbg, old_off + hsize, &die) != NULL)
123 old_off + hsize + typeoff);
get-lines.c 51 size_t hsize; local
55 while (dwarf_nextcu (dbg, cuoff, &cuoff, &hsize, &ao, &asz, &osz) == 0)
58 hsize, (unsigned long long int) ao,
63 if (dwarf_offdie (dbg, old_cuoff + hsize, &die) == NULL)
show-die-info.c 333 size_t hsize; local
337 while (dwarf_nextcu (dbg, off, &off, &hsize, &abbrev, &addresssize,
340 printf ("New CU: off = %llu, hsize = %zu, ab = %llu, as = %" PRIu8
342 (unsigned long long int) old_off, hsize,
347 if (dwarf_offdie (dbg, old_off + hsize, &die) != NULL)
  /external/elfutils/libelf/
elf_compress_gnu.c 102 size_t hsize = 4 + 8; /* GNU "ZLIB" + 8 byte size. */ local
104 void *out_buf = __libelf_compress (scn, hsize, elfdata,
154 size_t hsize = 4 + 8; /* GNU "ZLIB" + 8 byte size. */
155 if (data->d_size < hsize || memcmp (data->d_buf, "ZLIB", 4) != 0)
179 size_t size_in = data->d_size - hsize;
180 void *buf_in = data->d_buf + hsize;
elf_compress.c 61 alignment. Returns a buffer that has at least hsize bytes (for the
63 returns the new buffer size in new_size (hsize + compressed data
68 __libelf_compress (Elf_Scn *scn, size_t hsize, int ei_data,
88 && data->d_size <= hsize + 5 + 6)
95 hsize. Make the first chunk twice that size (25%), then increase
97 size_t block = (data->d_size / 8) + hsize;
107 size_t used = hsize;
298 size_t hsize = (elfclass == ELFCLASS32 local
300 size_t size_in = data->d_size - hsize;
301 void *buf_in = data->d_buf + hsize;
410 size_t hsize = (elfclass == ELFCLASS32 local
    [all...]
  /external/vboot_reference/tests/
vboot_common2_tests.c 124 unsigned hsize; local
135 hsize = (unsigned) hdr->preamble_size;
136 h = (VbKernelPreambleHeader *)malloc(hsize + 16384);
138 TEST_EQ(VerifyKernelPreamble(hdr, hsize, rsa), 0,
140 TEST_NEQ(VerifyKernelPreamble(hdr, hsize - 1, rsa), 0,
144 TEST_EQ(VerifyKernelPreamble(hdr, hsize + 1, rsa), 0,
148 Memcpy(h, hdr, hsize);
151 TEST_NEQ(VerifyKernelPreamble(h, hsize, rsa), 0,
154 Memcpy(h, hdr, hsize);
157 TEST_NEQ(VerifyKernelPreamble(h, hsize, rsa), 0
    [all...]
vboot_common3_tests.c 36 unsigned hsize; local
42 hsize = (unsigned) hdr->key_block_size;
43 h = (VbKeyBlockHeader *)malloc(hsize + 1024);
45 TEST_EQ(KeyBlockVerify(hdr, hsize, NULL, 1), 0,
47 TEST_EQ(KeyBlockVerify(hdr, hsize, public_key, 0), 0,
49 TEST_NEQ(KeyBlockVerify(hdr, hsize, NULL, 0), 0,
52 TEST_NEQ(KeyBlockVerify(hdr, hsize - 1, NULL, 1), 0,
54 TEST_EQ(KeyBlockVerify(hdr, hsize + 1, NULL, 1), 0,
57 Memcpy(h, hdr, hsize);
59 TEST_NEQ(KeyBlockVerify(h, hsize, NULL, 1), 0
173 unsigned hsize; local
    [all...]
vb20_common3_tests.c 42 uint32_t hsize; local
56 hsize = hdr->keyblock_size;
57 h = (struct vb2_keyblock *)malloc(hsize + 2048);
59 Memcpy(h, hdr, hsize);
60 TEST_SUCC(vb2_verify_keyblock(h, hsize, &key, &wb),
63 Memcpy(h, hdr, hsize);
64 TEST_EQ(vb2_verify_keyblock(h, hsize - 1, &key, &wb),
68 Memcpy(h, hdr, hsize);
69 TEST_SUCC(vb2_verify_keyblock(h, hsize + 1, &key, &wb),
72 Memcpy(h, hdr, hsize);
182 uint32_t hsize; local
    [all...]
  /external/jemalloc_new/test/unit/
stats.c 320 size_t curlextents, sz, hsize; local
324 assert_d_eq(mallctl("arenas.lextent.0.size", (void *)&hsize, &sz, NULL,
327 p = mallocx(hsize, MALLOCX_ARENA(0));
  /external/e2fsprogs/misc/
e2fuzz.c 184 off_t hsize, count, off, offset, corrupt_bytes; local
262 hsize = fs->blocksize * ext2fs_blocks_count(fs->super);
272 off = rand_num(offset, hsize);
  /external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/
LZWEncoder.java 33 static final int HSIZE = 5003; // 80% occupancy
54 int[] htab = new int[HSIZE];
56 int[] codetab = new int[HSIZE];
58 int hsize = HSIZE; // for dynamic table sizing field in class:LZWEncoder
132 cl_hash(hsize);
140 void cl_hash(int hsize) {
141 for (int i = 0; i < hsize; ++i)
171 for (fcode = hsize; fcode < 65536; fcode *= 2)
175 hsize_reg = hsize;
    [all...]
  /external/libaom/libaom/av1/common/
cdef.c 111 int sstride, int vsize, int hsize) {
115 copy_rect8_16bit_to_16bit(dst, dstride, base, sstride, vsize, hsize);
118 copy_rect8_8bit_to_16bit(dst, dstride, base, sstride, vsize, hsize);
259 int hsize = nhb << mi_wide_l2[pli]; local
268 cend = hsize;
270 cend = hsize + CDEF_HBORDER;
282 rend + CDEF_VBORDER, hsize + CDEF_HBORDER - cend,
289 CDEF_VBORDER, hsize + 2 * CDEF_HBORDER, CDEF_VERY_LARGE);
302 coffset, xd->plane[pli].dst.stride, CDEF_VBORDER, hsize);
305 stride, CDEF_VBORDER, hsize);
    [all...]
  /external/mesa3d/src/mesa/main/
eval.c 217 GLint i, j, k, size, dsize, hsize; local
230 hsize = (uorder > vorder ? uorder : vorder)*size;
232 if(hsize>dsize)
233 buffer = malloc((uorder*vorder*size+hsize)*sizeof(GLfloat));
260 GLint i, j, k, size, hsize, dsize; local
273 hsize = (uorder > vorder ? uorder : vorder)*size;
275 if(hsize>dsize)
276 buffer = malloc((uorder*vorder*size+hsize)*sizeof(GLfloat));
  /external/tcpdump/
print-tipc.c 163 u_int hsize; local
178 hsize = TIPC_HSIZE(w0);
185 if (hsize <= 6) {
190 hsize*4, msize,
203 hsize*4, msize,
228 u_int hsize; local
248 hsize = TIPC_HSIZE(w0);
258 hsize*4, msize,
296 u_int hsize; local
308 hsize = TIPC_HSIZE(w0)
    [all...]
  /external/elfutils/src/
nm.c 625 size_t hsize; local
627 while (dwarf_nextcu (dbg, old_offset = offset, &offset, &hsize, NULL, NULL,
631 Dwarf_Die *cudie = dwarf_offdie (dbg, old_offset + hsize, &cudie_mem);
    [all...]
readelf.c 7876 size_t hsize; local
9586 size_t hsize; local
9751 size_t hsize; local
    [all...]
  /external/iperf3/src/
iperf_api.c 2049 uint32_t hsize, nsize; local
2075 uint32_t hsize, nsize; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_context.h 990 GLuint hsize; \/* Tessellation control output size in urb registers *\/ member in struct:brw_context::__anon34316
    [all...]

Completed in 2149 milliseconds