Searched refs:fsize (Results 1 - 24 of 24) sorted by relevance

/external/elfutils/0.153/src/
H A Dxelf.h139 ? ({ size_t fsize; \
142 case ELF_T_BYTE: fsize = 1; break; \
143 case ELF_T_ADDR: fsize = sizeof (Elf32_Addr); break; \
144 case ELF_T_DYN: fsize = sizeof (Elf32_Dyn); break; \
145 case ELF_T_EHDR: fsize = sizeof (Elf32_Ehdr); break; \
146 case ELF_T_HALF: fsize = sizeof (Elf32_Half); break; \
147 case ELF_T_OFF: fsize = sizeof (Elf32_Off); break; \
148 case ELF_T_PHDR: fsize = sizeof (Elf32_Phdr); break; \
149 case ELF_T_RELA: fsize = sizeof (Elf32_Rela); break; \
150 case ELF_T_REL: fsize
[all...]
H A Dreadelf.c6143 unsigned int fsize; local
6144 get_uleb128 (fsize, linep);
6147 cnt, diridx, mtime, fsize, fname);
/external/elfutils/0.153/libelf/
H A Delf32_fsize.c64 elfw2(LIBELFBITS, fsize) (type, count, version)
93 local_strong_alias (elfw2(LIBELFBITS, fsize), __elfw2(LIBELFBITS, msize))
H A DlibelfP.h430 elfw2(class,fsize) (type, n, __libelf_version)
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_suppressions.cc61 const uptr fsize = internal_filesize(fd); local
62 if (fsize == (uptr)-1) {
67 char *buf = (char*)internal_alloc(MBlockSuppression, fsize + 1);
68 if (fsize != internal_read(fd, buf, fsize)) {
74 buf[fsize] = 0;
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_libc_test.cc90 uptr fsize = internal_filesize(fd); local
91 EXPECT_EQ(len1 + len2, fsize);
98 EXPECT_EQ(fsize, (uptr)st3.st_size);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_posix.cc201 uptr fsize = internal_filesize(fd); local
202 CHECK_NE(fsize, (uptr)-1);
203 CHECK_GT(fsize, 0);
204 *buff_size = RoundUpTo(fsize, GetPageSizeCached());
/external/chromium_org/third_party/opus/src/tests/
H A Dtest_opus_encode.c137 int fsize; local
391 fsize=fast_rand()%31;
404 int frame_size=fsizes[db62[fsize]];
447 fsize=(fsize+1)%36;
448 new_size=fsizes[db62[fsize]];
/external/libopus/tests/
H A Dtest_opus_encode.c137 int fsize; local
391 fsize=fast_rand()%31;
404 int frame_size=fsizes[db62[fsize]];
447 fsize=(fsize+1)%36;
448 new_size=fsizes[db62[fsize]];
/external/valgrind/main/coregrind/
H A Dpub_core_libcfile.h50 extern Long VG_(fsize) ( Int fd );
H A Dm_libcfile.c355 Long VG_(fsize) ( Int fd ) function
/external/e2fsprogs/e2fsck/
H A Dpass2.c1269 unsigned char *frag, *fsize; local
1333 fsize = &inode.osd2.hurd2.h_i_fsize;
1336 frag = fsize = 0;
1347 if (fsize && *fsize) {
1348 pctx.num = *fsize;
1350 *fsize = 0;
H A Dpass1.c554 unsigned char frag, fsize; local
1040 fsize = inode->osd2.hurd2.h_i_fsize;
1043 frag = fsize = 0;
1046 if (inode->i_faddr || frag || fsize ||
/external/valgrind/main/coregrind/m_ume/
H A Dmain.c99 fsz = (SizeT)VG_(fsize)(fd);
/external/e2fsprogs/debugfs/
H A Ddebugfs.c729 char frag, fsize; local
787 fsize = inode->osd2.hurd2.h_i_fsize;
790 frag = fsize = 0;
793 prefix, inode->i_faddr, frag, fsize);
1212 unsigned char *frag, *fsize; local
1260 fsize = &inode.osd2.hurd2.h_i_fsize;
1263 frag = fsize = 0;
1267 if (fsize)
1268 modify_u8(argv[0], "Fragment size", decimal_format, fsize);
/external/yaffs2/yaffs2/direct/
H A Ddtest.c313 void short_scan_test(const char *path, int fsize, int niterations) argument
327 make_a_file(fn,1,fsize);
334 void scan_pattern_test(const char *path, int fsize, int niterations) argument
357 make_pattern_file(fn[j],fsize);
/external/nanopb-c/generator/
H A Dnanopb_generator.py586 fsize = field.encoded_size(allmsgs)
587 if fsize is None:
589 size += fsize
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dvpxenc.c1606 static size_t fsize = 0; local
1626 fsize = pkt->data.frame.sz;
1628 ivf_write_frame_header(stream->file, pkt->data.frame.pts, fsize);
1630 fsize += pkt->data.frame.sz;
1635 ivf_write_frame_size(stream->file, fsize);
/external/genext2fs/
H A Dgenext2fs.c2190 int32 fsize = get_nod(fs, nod)->i_size; local
2194 if(fsize <= 0)
2196 if(fwrite(get_blk(fs, bk), (fsize > BLOCKSIZE) ? BLOCKSIZE : fsize, 1, f) != 1)
2198 fsize -= BLOCKSIZE;
/external/libvpx/libvpx/
H A Dvpxenc.c1323 static size_t fsize = 0; local
1349 fsize = pkt->data.frame.sz;
1351 ivf_write_frame_header(stream->file, pkt->data.frame.pts, fsize);
1353 fsize += pkt->data.frame.sz;
1358 ivf_write_frame_size(stream->file, fsize);
/external/javasqlite/src/main/java/SQLite/JDBC2z/
H A DJDBCResultSet.java209 public void setFetchSize(int fsize) throws SQLException {
210 if (fsize != 1) {
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_opengl.h5757 typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERNVPROC) (GLuint index, GLint fsize, GLenum type, GLsizei stride, const GLvoid *pointer);
/external/chromium_org/third_party/mesa/src/include/GL/
H A Dglext.h10260 GLAPI void APIENTRY glVertexAttribPointerNV (GLuint index, GLint fsize, GLenum type, GLsizei stride, const GLvoid *pointer);
10325 typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERNVPROC) (GLuint index, GLint fsize, GLenum type, GLsizei stride, const GLvoid *pointer);
/external/mesa3d/include/GL/
H A Dglext.h10250 GLAPI void APIENTRY glVertexAttribPointerNV (GLuint index, GLint fsize, GLenum type, GLsizei stride, const GLvoid *pointer);
10315 typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERNVPROC) (GLuint index, GLint fsize, GLenum type, GLsizei stride, const GLvoid *pointer);

Completed in 462 milliseconds