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

  /external/chromium_org/third_party/icu/source/tools/tzcode/
ialloc.c 26 icalloc(nelem, elsize)
28 int elsize;
30 if (nelem == 0 || elsize == 0)
31 nelem = elsize = 1;
32 return calloc((size_t) nelem, (size_t) elsize);
private.h 175 char * icalloc(int nelem, int elsize);
  /external/icu/icu4c/source/tools/tzcode/
ialloc.c 26 icalloc(nelem, elsize)
28 int elsize;
30 if (nelem == 0 || elsize == 0)
31 nelem = elsize = 1;
32 return calloc((size_t) nelem, (size_t) elsize);
private.h 175 char * icalloc(int nelem, int elsize);
  /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/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
xmalloc.c 41 static /*@only@*/ void *def_xcalloc(size_t nelem, size_t elsize);
52 /*@only@*/ void * (*yasm_xcalloc) (size_t nelem, size_t elsize) = def_xcalloc;
77 def_xcalloc(size_t nelem, size_t elsize)
81 if (nelem == 0 || elsize == 0)
82 nelem = elsize = 1;
84 newmem = calloc(nelem, elsize);
coretype.h 367 * \param elsize size (in bytes) of each element
371 extern /*@only@*/ void * (*yasm_xcalloc) (size_t nelem, size_t elsize);
377 * \param elsize new size, in bytes
  /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/0.153/src/
strip.c 802 size_t elsize = gelf_fsize (elf, ELF_T_SYM, 1, local
806 inner < shdr_info[cnt].data->d_size / elsize;
1177 size_t elsize = gelf_fsize (elf, ELF_T_SYM, 1, local
1469 size_t elsize = gelf_fsize (elf, ELF_T_SYM, 1, local
1523 size_t elsize = gelf_fsize (elf, ELF_T_SYM, 1, local
1593 size_t elsize = gelf_fsize (elf, verd->d_type, 1, local
    [all...]
elflint.c 2440 size_t elsize = elf32_fsize (ELF_T_WORD, 1, EV_CURRENT); local
2485 idx, section_name (ebl, idx), cnt \/ elsize); local
2494 idx, section_name (ebl, idx), cnt \/ elsize, local
2507 idx, section_name (ebl, idx), cnt \/ elsize, local
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prmem.h 66 NSPR_API(void *) PR_Calloc(PRUint32 nelem, PRUint32 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.6/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.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...]
  /external/chromium_org/third_party/cython/src/Cython/Includes/numpy/
__init__.pxd 160 cdef int itemsize "elsize"
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolutionExpander.cpp 419 const SCEV *ElSize = SE.getSizeOfExpr(IntPtrTy, ElTy);
420 if (!ElSize->isZero()) {
425 if (FactorOutConstant(Op, Remainder, ElSize, SE, SE.DL)) {
426 // Op now has ElSize factored out.
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 1383 milliseconds