Searched refs:size (Results 101 - 125 of 251) sorted by relevance

1234567891011

/bionic/libm/x86_64/
H A De_atan2.S422 .size a2,16
430 .size b2,16
450 .size P_TBL,64
470 .size SGN_TBL,64
1130 .size ATAN_TBL,2624
1150 .size P_TBL2,64
1170 .size SELECT_B,64
1178 .size SGNMASK,16
1186 .size pi_table,16
1194 .size pi2_tabl
[all...]
H A Ds_tan.S60 // The total table size is therefore 5632 bytes.
626 .size ONEHALF,16
634 .size MUL16,16
642 .size sign_mask,16
650 .size PI32INV,16
658 .size P_1,16
666 .size P_2,16
674 .size P_3,16
2086 .size Ctable,5632
2094 .size MASK_3
[all...]
H A De_log10.S233 .size HIGHSIGMASK,16
241 .size LOG10_E,16
761 .size L_tbl,2064
769 .size log2,16
785 .size coeff,48
H A De_acos.S46 // of rounding error). The table size must be sufficiently large, to minimize
372 .size ABSVALMASK,16
888 .size T_table,2048
1852 .size Tbl_addr,3840
1865 .size cv,32
1873 .size PI_BY_2,16
1881 .size NEG_PI,16
1901 .size cv2,64
1909 .size HALFMASK,16
1917 .size P
[all...]
H A Ds_atan.S223 .size ONEMASK,8
231 .size a2,16
239 .size b2,16
891 .size atan_tbl,2592
899 .size pi_table,16
905 .size SGNMASK,8
H A De_sinh.S314 .size L2E,16
322 .size Shifter,16
346 .size cv,80
862 .size T2f,2048
1378 .size T2_neg_f,2048
1394 .size pv,48
1402 .size MASK3,16
1408 .size HALFMASK,8
H A Ds_sin.S610 .size ONEHALF,16
618 .size P_2,16
626 .size SC_4,16
1142 .size Ctable,2048
1150 .size SC_2,16
1158 .size SC_3,16
1166 .size SC_1,16
1211 .size PI_INV_TABLE,164
1220 .size PI_4,16
1226 .size PI32IN
[all...]
H A De_asin.S46 // of rounding error). The table size must be sufficiently large, to minimize
459 .size ABSVALMASK,16
975 .size T_table,2048
1939 .size Tbl_addr,3840
1948 .size SIGNMASK,16
1956 .size HALFMASK2,16
1964 .size PI_BY_2,16
1984 .size cv2,64
1992 .size HALFMASK,16
1998 .size ONEMAS
[all...]
/bionic/libc/bionic/
H A Dmalloc_common.cpp128 extern "C" int posix_memalign(void** memptr, size_t alignment, size_t size) { argument
131 return _posix_memalign(memptr, alignment, size);
133 return Malloc(posix_memalign)(memptr, alignment, size);
204 // "*overall_size" is set to the size of the "info" buffer
205 // "*info_size" is set to the size of a single entry
424 // [base, base+size). Must be called between malloc_disable and malloc_enable.
425 extern "C" int malloc_iterate(uintptr_t base, size_t size, argument
426 void (*callback)(uintptr_t base, size_t size, void* arg), void* arg) {
429 return _iterate(base, size, callback, arg);
431 return Malloc(iterate)(base, size, callbac
[all...]
H A Dlibgen.cpp165 int rc = __basename_r(path, buf, g_basename_tls_buffer.size());
171 int rc = __dirname_r(path, buf, g_dirname_tls_buffer.size());
H A Ddl_iterate_phdr_static.cpp38 int dl_iterate_phdr(int (*cb)(struct dl_phdr_info* info, size_t size, void* data), void* data) { argument
H A Dmntent.cpp40 g_getmntent_strings_tls_buffer.size());
/bionic/tools/relocation_packer/src/
H A Delf_file.cc29 // Out-of-band dynamic tags used to indicate the offset and size of the
49 // so that the section size and the data size are the same. True in
63 size_t size) {
65 CHECK(size == data->d_size);
66 uint8_t* area = new uint8_t[size];
67 memcpy(area, section_data, size);
312 // If large, reduce p_align for a LOAD segment to page size on packing.
518 for (size_t i = 0; i < dynamics.size(); ++i) {
547 // DT_RELSZ or DT_RELASZ indicate the overall size o
61 RewriteSectionData(Elf_Scn* section, const void* section_data, size_t size) argument
[all...]
/bionic/libc/upstream-openbsd/lib/libc/stdio/
H A Dvfprintf.c222 * The size of the buffer we use as scratch space for integer
254 #define MAXINT 0x1000 /* largest integer size (intmax_t) */
317 int realsz; /* field size expanded by dprec */
318 int size; /* size of converted field or string */ local
335 * Choose PADSIZE to trade efficiency vs. size. If larger printf
339 #define PADSIZE 16 /* pad chunk size */
656 size = (int)mbseqlen;
660 size = 1;
769 size
[all...]
H A Dvfwprintf.c204 * converting at most `size' bytes of the input multibyte string to
244 * The size of the buffer we use as scratch space for integer
276 #define MAXINT 0x1000 /* largest integer size (intmax_t) */
324 int realsz; /* field size expanded by dprec */
325 int size; /* size of converted field or string */ local
337 * Choose PADSIZE to trade efficiency vs. size. If larger printf
341 #define PADSIZE 16 /* pad chunk size */
616 size = 1;
732 size
[all...]
/bionic/linker/
H A Dlinker_phdr.cpp68 p_filesz -> segment file size
69 p_memsz -> segment memory size (always >= p_filesz)
251 bool ElfReader::CheckFileRange(ElfW(Addr) offset, size_t size) {
256 safe_add(&range_end, range_start, size) &&
274 size_t size = phdr_num_ * sizeof(ElfW(Phdr));
275 if (!CheckFileRange(header_.e_phoff, size)) {
276 DL_ERR("\"%s\" has invalid phdr offset/size", name_.c_str());
280 if (!phdr_fragment_.Map(fd_, file_offset_, header_.e_phoff, size)) {
297 size_t size = shdr_num_ * sizeof(ElfW(Shdr));
298 if (!CheckFileRange(header_.e_shoff, size)) {
723 ssize_t size = seg_page_end - seg_page_start; variable
789 size_t size = seg_page_end - seg_page_start; variable
[all...]
H A Dlinker_block_allocator.cpp26 static constexpr size_t round_up(size_t size, size_t multiplier) { argument
27 return (size + (multiplier - 1)) & ~(multiplier-1);
/bionic/libc/kernel/uapi/drm/
H A Dexynos_drm.h24 uint64_t size; member in struct:drm_exynos_gem_create
32 uint64_t size; member in struct:drm_exynos_gem_info
74 unsigned long size; member in struct:drm_exynos_g2d_userptr
H A Dmsm_drm.h54 __u64 size; member in struct:drm_msm_gem_new
97 __u32 size; member in struct:drm_msm_gem_submit_cmd
/bionic/libc/kernel/uapi/linux/netfilter_bridge/
H A Debtables.h169 #define EBT_ENTRY_ITERATE(entries,size,fn,args...) \
170 ({ unsigned int __i; int __ret = 0; struct ebt_entry * __entry; for(__i = 0; __i < (size);) { __entry = (void *) (entries) + __i; __ret = fn(__entry, ##args); if(__ret != 0) break; if(__entry->bitmask != 0) __i += __entry->next_offset; else __i += sizeof(struct ebt_entries); } if(__ret == 0) { if(__i != (size)) __ret = - EINVAL; } __ret; \
/bionic/libc/include/
H A Dstdlib.h77 extern int posix_memalign(void **memptr, size_t alignment, size_t size);
101 size_t nmemb, size_t size,
/bionic/libc/kernel/uapi/linux/dvb/
H A Dvideo.h114 video_size_t size; member in union:video_event::__anon321
131 __s32 size; member in struct:video_still_picture
/bionic/libc/kernel/uapi/linux/
H A Dnfs3.h84 unsigned short size; member in struct:nfs3_fh
H A Dvfio.h76 __u64 size; member in struct:vfio_region_info
185 __u64 size; member in struct:vfio_iommu_type1_dma_map
194 __u64 size; member in struct:vfio_iommu_type1_dma_unmap
260 __u64 size; member in struct:vfio_iommu_spapr_register_memory
/bionic/libc/kernel/uapi/linux/raid/
H A Dmd_p.h90 __u32 size; member in struct:mdp_superblock_s
160 __le64 size; member in struct:mdp_superblock_1
229 __le32 size; member in struct:r5l_payload_data_parity
242 __le32 size; member in struct:r5l_payload_flush

Completed in 452 milliseconds

1234567891011