HomeSort by relevance Sort by last modified time
    Searched refs:bufsize (Results 76 - 100 of 489) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/vboot_reference/tests/
vb21_host_sig_tests.c 54 uint32_t bufsize; local
121 bufsize = c_sig_offs + size;
122 buf = calloc(1, bufsize);
125 c->total_size = bufsize;
138 bufsize = c_sig_offs + size;
139 buf = calloc(1, bufsize);
142 c->total_size = bufsize;
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
DLexerBase.h 113 int bufsize; member in class:DLGState
178 int bufsize() { return _bufsize; } function in class:DLGLexerBase
184 unsigned bufsize=2000,
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
DLexerBase.h 112 int bufsize; member in class:DLGState
174 int bufsize() { return _bufsize; } function in class:DLGLexerBase
180 unsigned bufsize=2000,
DLexerBase.cpp 57 unsigned bufsize,
61 this->_bufsize = bufsize;
122 state->bufsize = _bufsize;
146 _bufsize = state->bufsize;
  /external/mesa3d/src/glx/
renderpix.c 167 const GLint bufsize = image1len + image2len; local
181 buf = malloc(bufsize);
194 bufsize);
  /device/generic/goldfish-opengl/system/OpenglSystemCommon/
QemuPipeStream.h 38 explicit QemuPipeStream(size_t bufsize = 10000);
62 QemuPipeStream(QEMU_PIPE_HANDLE sock, size_t bufSize);
  /external/dtc/tests/
dtb_reverse.c 136 int bufsize; local
146 bufsize = fdt_totalsize(in);
147 out = xmalloc(bufsize);
149 CHECK(fdt_create(out, bufsize));
  /external/libcups/cups/
adminutil.h 70 char *buffer, int bufsize)
  /external/ppp/pppd/include/
pcap-int.h 81 int bufsize; member in struct:pcap
  /external/tensorflow/tensorflow/lite/toco/graph_transformations/tests/
fuse_binary_into_following_affine_test.cc 58 int bufsize = 1; local
60 bufsize *= dim;
62 array_buffer.data.resize(bufsize);
64 for (int i = 0; i < bufsize; ++i) {
  /external/vboot_reference/host/lib/
util_misc.c 44 uint32_t bufsize; local
51 bufsize = (2 + nwords + nwords) * sizeof(uint32_t);
52 outbuf = malloc(bufsize);
57 *keyb_size = bufsize;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
bz2module.c 423 Util_ReadAhead(BZ2FileObject *f, int bufsize)
439 if ((f->f_buf = PyMem_Malloc(bufsize)) == NULL) {
445 bufsize, f);
464 Util_ReadAheadGetLineSkip(BZ2FileObject *f, int skip, int bufsize)
472 if (Util_ReadAhead(f, bufsize) < 0)
496 bufsize + (bufsize>>2));
1624 int bufsize = SMALLCHUNK; local
1703 int bufsize = SMALLCHUNK; local
1915 int bufsize = SMALLCHUNK; local
2128 int bufsize; local
2221 int bufsize = SMALLCHUNK; local
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
regerror.c 330 onig_snprintf_with_pattern(UChar buf[], int bufsize, OnigEncoding enc,
333 onig_snprintf_with_pattern(buf, bufsize, enc, pat, pat_end, fmt, va_alist)
335 int bufsize;
349 n = xvsnprintf((char* )buf, bufsize, (const char* )fmt, args);
354 if (n + need < bufsize) {
355 strcat_s((char* )buf, bufsize, ": /");
  /external/python/cpython3/Lib/xml/dom/
pulldom.py 205 def __init__(self, stream, parser, bufsize):
208 self.bufsize = bufsize
255 buf = self.stream.read(self.bufsize)
324 def parse(stream_or_string, parser=None, bufsize=None):
325 if bufsize is None:
326 bufsize = default_bufsize
333 return DOMEventStream(stream, parser, bufsize)
338 bufsize = len(string)
342 return DOMEventStream(buf, parser, bufsize)
    [all...]
  /external/dtc/
util.c 234 off_t bufsize = 1024, offset = 0; local
245 buf = xmalloc(bufsize);
248 if (offset == bufsize) {
249 bufsize *= 2;
250 buf = xrealloc(buf, bufsize);
253 ret = read(fd, &buf[offset], bufsize - offset);
267 *len = bufsize;
  /external/libjpeg-turbo/simd/arm/
jsimd.c 67 parse_proc_cpuinfo(int bufsize)
69 char *buffer = (char *)malloc(bufsize);
79 while (fgets(buffer, bufsize, fd)) {
109 int bufsize = 1024; /* an initial guess for the line buffer size limit */ local
123 while (!parse_proc_cpuinfo(bufsize)) {
124 bufsize *= 2;
125 if (bufsize > SOMEWHAT_SANE_PROC_CPUINFO_SIZE_LIMIT)
  /external/u-boot/scripts/dtc/
util.c 234 off_t bufsize = 1024, offset = 0; local
245 buf = xmalloc(bufsize);
248 if (offset == bufsize) {
249 bufsize *= 2;
250 buf = xrealloc(buf, bufsize);
253 ret = read(fd, &buf[offset], bufsize - offset);
267 *len = bufsize;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
pystrtod.c 744 Py_ssize_t bufsize; local
827 bufsize = 5;
829 bufsize = 25 + precision;
832 bufsize += exp/3;
836 buf = PyMem_Malloc(bufsize);
860 _PyOS_ascii_formatd(buf, bufsize, format, val, precision);
867 /* the bufsize calculations above should ensure that we've got
869 assert((size_t)bufsize >= len+2);
944 Py_ssize_t bufsize = 0; local
976 bufsize = 5; /* Used later in an assert. */
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
pystrtod.c 744 Py_ssize_t bufsize; local
827 bufsize = 5;
829 bufsize = 25 + precision;
832 bufsize += exp/3;
836 buf = PyMem_Malloc(bufsize);
860 _PyOS_ascii_formatd(buf, bufsize, format, val, precision);
867 /* the bufsize calculations above should ensure that we've got
869 assert((size_t)bufsize >= len+2);
944 Py_ssize_t bufsize = 0; local
976 bufsize = 5; /* Used later in an assert. */
    [all...]
  /external/python/cpython2/Python/
pystrtod.c 744 Py_ssize_t bufsize; local
827 bufsize = 5;
829 bufsize = 25 + precision;
832 bufsize += exp/3;
836 buf = PyMem_Malloc(bufsize);
860 _PyOS_ascii_formatd(buf, bufsize, format, val, precision);
867 /* the bufsize calculations above should ensure that we've got
869 assert((size_t)bufsize >= len+2);
944 Py_ssize_t bufsize = 0; local
976 bufsize = 5; /* Used later in an assert. *
    [all...]
  /external/python/cpython3/Python/
pystrtod.c 804 Py_ssize_t bufsize; local
887 bufsize = 5;
889 bufsize = 25 + precision;
892 bufsize += exp/3;
896 buf = PyMem_Malloc(bufsize);
920 _PyOS_ascii_formatd(buf, bufsize, format, val, precision);
927 /* the bufsize calculations above should ensure that we've got
929 assert((size_t)bufsize >= len+2);
1005 Py_ssize_t bufsize = 0; local
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/FdtLib/
fdt_sw.c 88 int fdt_create(void *buf, int bufsize)
92 if (bufsize < sizeof(struct fdt_header))
95 memset(buf, 0, bufsize);
100 fdt_set_totalsize(fdt, bufsize);
105 fdt_set_off_dt_strings(fdt, bufsize);
  /external/freetype/builds/amiga/src/base/
ftsystem.c 359 ULONG bufsize; local
361 bufsize = ( read_bytes > IOBUF_SIZE ) ? IOBUF_SIZE : read_bytes;
363 sysfile->iobuf_start = sysfile->iobuf_end - bufsize;
364 CopyMem( &buffer[read_bytes - bufsize] , sysfile->iobuf, bufsize );
  /external/libunwind/src/dwarf/
Gfind_proc_info-lsb.c 85 in *BUF, and sets *BUFSIZE to its size. IS_LOCAL is 1 if using the
94 load_debug_frame (const char *file, char **buf, size_t *bufsize,
107 *bufsize = 0;
150 *bufsize = sec_hdrs[i].sh_size;
151 *buf = malloc (*bufsize);
153 if (*buf == NULL || fread (*buf, 1, *bufsize, f) != *bufsize)
157 *bufsize, (long) sec_hdrs[i].sh_offset);
202 if (elf_w (find_section_mapped) (&mdi, ".debug_frame", &found_section, bufsize, NULL)) {
204 *buf = malloc (*bufsize);
334 size_t bufsize; local
469 size_t bufsize; local
    [all...]
  /external/u-boot/drivers/fpga/
lattice.c 21 static unsigned long bufsize; variable
157 if (read_bytes == bufsize) {
166 bufsize);
300 bufsize = bsize;
303 __func__, fpga_image, bufsize);

Completed in 1675 milliseconds

1 2 34 5 6 7 8 91011>>