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

1 2 3 45 6 7 8 91011>>

  /external/ltp/testcases/kernel/crypto/
crypto_user01.c 172 const size_t bufsize = 1048576; local
173 void *buf = SAFE_MALLOC(bufsize);
178 res = SAFE_NETLINK_RECV(ses.fd, buf, bufsize);
  /external/nist-sip/java/gov/nist/javax/sip/stack/
UDPMessageProcessor.java 188 int bufsize = sock.getReceiveBufferSize(); local
189 byte message[] = new byte[bufsize];
190 DatagramPacket packet = new DatagramPacket(message, bufsize);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_fileinput.py 50 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs)
61 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs)
80 fi = FileInput(files=(t1, t2, t3, t4, '-'), bufsize=bs)
94 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs)
105 fi = FileInput(files=(t1, t2, t3, t4), inplace=1, bufsize=bs)
113 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs)
  /external/openssh/
sshlogin.c 74 char *buf, size_t bufsize)
79 strlcpy(buf, li.hostname, bufsize);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
socket.py 216 def makefile(self, mode='r', bufsize=-1):
217 """makefile([mode[, bufsize]]) -> file object
220 and bufsize arguments are as for the built-in open() function."""
221 return _fileobject(self._sock, mode, bufsize)
245 __slots__ = ["mode", "bufsize", "softspace",
250 def __init__(self, sock, mode='rb', bufsize=-1, close=False):
253 if bufsize < 0:
254 bufsize = self.default_bufsize
255 self.bufsize = bufsize
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
socket.py 212 def makefile(self, mode='r', bufsize=-1):
213 """makefile([mode[, bufsize]]) -> file object
216 and bufsize arguments are as for the built-in open() function."""
217 return _fileobject(self._sock, mode, bufsize)
241 __slots__ = ["mode", "bufsize", "softspace",
246 def __init__(self, sock, mode='rb', bufsize=-1, close=False):
249 if bufsize < 0:
250 bufsize = self.default_bufsize
251 self.bufsize = bufsize
    [all...]
posixfile.py 3 f = posixfile.open(filename, [mode, [bufsize]])
76 def open(self, name, mode='r', bufsize=-1):
78 return self.fileopen(__builtin__.open(name, mode, bufsize))
220 def open(name, mode='r', bufsize=-1):
222 return _posixfile_().open(name, mode, bufsize)
  /external/libcups/cups/
pwg-media.c 38 static char *pwg_format_inches(char *buf, size_t bufsize, int val);
39 static char *pwg_format_millimeters(char *buf, size_t bufsize, int val);
    [all...]
snprintf.c 30 size_t bufsize, /* O - Size of output buffer */
55 bufend = buffer + bufsize - 1;
339 size_t bufsize, /* O - Size of output buffer */
348 bytes = vsnprintf(buffer, bufsize, format, ap);
  /external/python/cpython2/Lib/
socket.py 216 def makefile(self, mode='r', bufsize=-1):
217 """makefile([mode[, bufsize]]) -> file object
220 and bufsize arguments are as for the built-in open() function."""
221 return _fileobject(self._sock, mode, bufsize)
245 __slots__ = ["mode", "bufsize", "softspace",
250 def __init__(self, sock, mode='rb', bufsize=-1, close=False):
253 if bufsize < 0:
254 bufsize = self.default_bufsize
255 self.bufsize = bufsize
    [all...]
posixfile.py 3 f = posixfile.open(filename, [mode, [bufsize]])
76 def open(self, name, mode='r', bufsize=-1):
78 return self.fileopen(__builtin__.open(name, mode, bufsize))
220 def open(name, mode='r', bufsize=-1):
222 return _posixfile_().open(name, mode, bufsize)
  /external/python/cpython3/Modules/_io/
fileio.c 685 size_t bufsize; local
712 bufsize = (size_t)(end - pos + 1);
714 bufsize = SMALLCHUNK;
717 result = PyBytes_FromStringAndSize(NULL, bufsize);
722 if (bytes_read >= (Py_ssize_t)bufsize) {
723 bufsize = new_buffersize(self, bytes_read);
724 if (bufsize > PY_SSIZE_T_MAX || bufsize <= 0) {
732 if (PyBytes_GET_SIZE(result) < (Py_ssize_t)bufsize) {
733 if (_PyBytes_Resize(&result, bufsize) < 0
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
DLexerBase.cpp 58 unsigned bufsize,
62 this->_bufsize = bufsize;
123 state->bufsize = _bufsize;
147 _bufsize = state->bufsize;
dlgdef.h 60 int bufsize; member in struct:zzdlg_state
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
dlgdef.h 60 int bufsize; member in struct:zzdlg_state
  /external/e2fsprogs/debugfs/
zap.c 243 void do_byte_hexdump(FILE *fp, unsigned char *buf, size_t bufsize)
248 for (i = 0; i < bufsize; i += 16) {
249 max = (bufsize - i > 16) ? 16 : bufsize - i;
  /external/grpc-grpc/third_party/nanopb/
pb_decode.h 106 pb_istream_t pb_istream_from_buffer(const pb_byte_t *buf, size_t bufsize);
pb_encode.h 89 pb_ostream_t pb_ostream_from_buffer(pb_byte_t *buf, size_t bufsize);
  /external/nanopb-c/
pb_decode.h 118 pb_istream_t pb_istream_from_buffer(const pb_byte_t *buf, size_t bufsize);
pb_encode.h 95 pb_ostream_t pb_ostream_from_buffer(pb_byte_t *buf, size_t bufsize);
  /external/python/cpython3/Lib/asyncio/
windows_utils.py 23 BUFSIZE = 8192
32 def pipe(*, duplex=False, overlapped=(True, True), bufsize=BUFSIZE):
41 obsize, ibsize = bufsize, bufsize
45 obsize, ibsize = 0, bufsize
133 assert kwds.get('bufsize', 0) == 0
  /external/tensorflow/tensorflow/core/kernels/
cuda_solvers.cc 358 static inline Status PotrfImpl(BufSizeFnT bufsize, SolverFnT solver,
368 bufsize(cusolver_dn_handle, uplo, n, CUDAComplex(A), lda, &lwork));
391 static inline Status GetrfImpl(BufSizeFnT bufsize, SolverFnT solver,
401 bufsize(cusolver_dn_handle, m, n, CUDAComplex(A), lda, &lwork));
451 static inline Status GeqrfImpl(BufSizeFnT bufsize, SolverFnT solver,
461 bufsize(cusolver_dn_handle, m, n, CUDAComplex(A), lda, &lwork));
484 static inline Status UnmqrImpl(BufSizeFnT bufsize, SolverFnT solver,
496 bufsize(cusolver_dn_handle, side, trans, m, n, k, CUDAComplex(dev_a), lda,
530 static inline Status UngqrImpl(BufSizeFnT bufsize, SolverFnT solver,
539 TF_RETURN_IF_CUSOLVER_ERROR(bufsize(cusolver_dn_handle, m, n, k
    [all...]
record_input_op.cc 47 yopts.bufsize = file_buffer_size;
  /external/u-boot/arch/arm/mach-sunxi/
spl_spi_sunxi.c 187 static void sunxi_spi0_read_data(u8 *buf, u32 addr, u32 bufsize,
197 writel(4 + bufsize, spi_bc_reg); /* Burst counter (total bytes) */
212 while ((readl(spi_fifo_reg) & 0x7F) < 4 + bufsize)
219 while (bufsize-- > 0)
  /external/vboot_reference/cgpt/
cgpt_nor.c 99 const int bufsize = 4096; local
100 char *buf = malloc(bufsize);
123 if (to_read > bufsize) {
124 to_read = bufsize;

Completed in 692 milliseconds

1 2 3 45 6 7 8 91011>>