/toolchain/binutils/binutils-2.25/libiberty/ |
calloc.c | 6 @deftypefn Supplemental void* calloc (size_t @var{nelem}, size_t @var{elsize}) 9 @var{elsize} bytes each, then zeros the memory. 23 calloc (size_t nelem, size_t elsize) 27 if (nelem == 0 || elsize == 0) 28 nelem = elsize = 1; 30 ptr = malloc (nelem * elsize); 31 if (ptr) bzero (ptr, nelem * elsize);
|
xmalloc.c | 38 @deftypefn Replacement void* xcalloc (size_t @var{nelem}, size_t @var{elsize}) 155 xcalloc (size_t nelem, size_t elsize) 159 if (nelem == 0 || elsize == 0) 160 nelem = elsize = 1; 162 newmem = calloc (nelem, elsize); 164 xmalloc_failed (nelem * elsize);
|
functions.texi | 121 @deftypefn Supplemental void* calloc (size_t @var{nelem}, size_t @var{elsize}) 124 @var{elsize} bytes each, then zeros the memory. [all...] |
/development/tools/yuv420sp2rgb/ |
debug.c | 7 int dump_hex_buffer(FILE *s, void *b, size_t len, size_t elsize) { 14 if (!elsize) { 18 if (i && !(i % elsize)) fprintf(s, " ");
|
debug.h | 88 int dump_hex_buffer(FILE *s, void *b, size_t l, size_t elsize);
|
/external/bison/lib/ |
xsize.h | 102 #define xtimes(N, ELSIZE) \ 103 ((N) <= SIZE_MAX / (ELSIZE) ? (size_t) (N) * (ELSIZE) : SIZE_MAX)
|
/external/e2fsprogs/intl/ |
xsize.h | 99 #define xtimes(N, ELSIZE) \ 100 ((N) <= SIZE_MAX / (ELSIZE) ? (size_t) (N) * (ELSIZE) : SIZE_MAX)
|
/external/elfutils/src/ |
strip.c | 849 size_t elsize = gelf_fsize (elf, ELF_T_SYM, 1, EV_CURRENT); local 852 inner < shdr_info[cnt].data->d_size / elsize; 1260 size_t elsize = gelf_fsize (elf, ELF_T_SYM, 1, EV_CURRENT); local 1568 size_t elsize = gelf_fsize (elf, ELF_T_SYM, 1, EV_CURRENT); local 1628 size_t elsize = gelf_fsize (elf, ELF_T_SYM, 1, EV_CURRENT); local 1708 size_t elsize = gelf_fsize (elf, verd->d_type, 1, EV_CURRENT); local [all...] |
elfcompress.c | 916 size_t elsize = gelf_fsize (elfnew, ELF_T_SYM, 1, EV_CURRENT); local 917 size_t syms = symd->d_size / elsize; 1121 size_t elsize = gelf_fsize (elfnew, ELF_T_SYM, 1, EV_CURRENT); local 1122 size_t syms = symd->d_size / elsize; [all...] |
elflint.c | 2652 size_t elsize = elf32_fsize (ELF_T_WORD, 1, EV_CURRENT); local 2697 idx, section_name (ebl, idx), cnt \/ elsize); local 2706 idx, section_name (ebl, idx), cnt \/ elsize, local 2719 idx, section_name (ebl, idx), cnt \/ elsize, local [all...] |
/external/opencv3/3rdparty/include/ffmpeg_/libavutil/ |
avutil.h | 291 * @param elsize size in bytes of each list element (only 1, 2, 4 or 8) 296 unsigned av_int_list_length_for_size(unsigned elsize,
|
mem.h | 123 void *av_realloc_f(void *ptr, size_t nelem, size_t elsize); 279 /* Hack inspired from glibc: only try the division if nelem and elsize
|
/external/elfutils/tests/ |
run-strings-test.sh | 382 testfile8: 8160 (versiondata->d_size / sizeof (GElf_Versym)) >= shdr_info[cnt].data->d_size / elsize 384 testfile8: 8200 (versiondata->d_size / sizeof (Elf32_Word)) >= shdr_info[cnt].data->d_size / elsize 451 testfile9: 39c0 (versiondata->d_size / sizeof (GElf_Versym)) >= shdr_info[cnt].data->d_size / elsize 453 testfile9: 3a60 (versiondata->d_size / sizeof (Elf32_Word)) >= shdr_info[cnt].data->d_size / elsize
|
elfstrmerge.c | 293 size_t elsize = gelf_fsize (elf, ELF_T_SYM, 1, EV_CURRENT); local 297 size_t symsnum = symd->d_size / elsize;
|
/external/antlr/antlr-3.4/runtime/C/include/ |
antlr3defs.h | 465 #define ANTLR3_CALLOC(numEl, elSize) calloc (numEl, (size_t)(elSize))
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/ |
Xlibint.h | 351 # define Xcalloc(nelem, elsize) calloc(((nelem) == 0 ? 1 : (nelem)), (elsize)) 357 # define Xcalloc(nelem, elsize) calloc((nelem), (elsize)) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/ |
Xlibint.h | 343 # define Xcalloc(nelem, elsize) calloc(((nelem) == 0 ? 1 : (nelem)), (elsize)) 349 # define Xcalloc(nelem, elsize) calloc((nelem), (elsize)) [all...] |
/external/opencv3/modules/core/src/ |
copy.cpp | 402 size_t elsize = it.size*elemSize(); local 438 memset( dptr, 0, elsize ); 448 for( size_t j = 0; j < elsize; j += blockSize ) 450 size_t sz = MIN(blockSize, elsize - j); 458 memcpy( dptr, data, elsize ); [all...] |
/external/opencv3/modules/imgproc/src/ |
deriv.cpp | 661 #define LAPLACIAN_LOCAL_MEM(tileX, tileY, ksize, elsize) (((tileX) + 2 * (int)((ksize) / 2)) * (3 * (tileY) + 2 * (int)((ksize) / 2)) * elsize) [all...] |
/external/llvm/lib/Analysis/ |
ScalarEvolutionExpander.cpp | 414 const SCEV *ElSize = SE.getSizeOfExpr(IntPtrTy, ElTy); 415 if (!ElSize->isZero()) { 419 if (FactorOutConstant(Op, Remainder, ElSize, SE, DL)) { 420 // Op now has ElSize factored out. [all...] |
/toolchain/binutils/binutils-2.25/gas/config/ |
obj-macho.c | 1190 unsigned int elsize = local [all...] |
tc-arm.c | 15557 unsigned elsize = (op == 2) ? 16 : (op == 1) ? 32 : (op == 0) ? 64 : 0; local [all...] |
/external/llvm/lib/Target/X86/ |
X86ISelLowering.cpp | [all...] |