HomeSort by relevance Sort by last modified time
    Searched defs:nbytes (Results 1 - 25 of 188) sorted by null

1 2 3 4 5 6 7 8

  /external/libvterm/src/
utf8.h 18 int nbytes = utf8_seqlen(codepoint); local
21 int b = nbytes;
28 switch(nbytes) {
37 return nbytes;
  /external/elfutils/libasm/
asm_adduleb128.c 75 size_t nbytes = dest - tmpbuf; local
78 if (__libasm_ensure_section_space (asmscn, nbytes) != 0)
83 memcpy (&asmscn->content->data[asmscn->content->len], tmpbuf, nbytes);
86 asmscn->content->len += nbytes;
89 asmscn->offset += nbytes;
asm_addsleb128.c 79 size_t nbytes = dest - tmpbuf; local
82 if (__libasm_ensure_section_space (asmscn, nbytes) != 0)
87 memcpy (&asmscn->content->data[asmscn->content->len], tmpbuf, nbytes);
90 asmscn->content->len += nbytes;
93 asmscn->offset += nbytes;
  /external/valgrind/include/
pub_tool_xtmemory.h 37 SizeT nbytes; member in struct:_XT_Allocs
  /external/strace/tests/
sync_file_range.c 43 const off64_t nbytes = 0xfacefeedcafef00dULL; local
46 int rc = sync_file_range(fd, offset, nbytes, flags);
52 (long long) nbytes,
sync_file_range2.c 43 const off64_t nbytes = 0xfacefeedcafef00d; local
46 int rc = sync_file_range(fd, offset, nbytes, flags);
52 (long long) nbytes,
  /external/strace/tests-m32/
sync_file_range.c 43 const off64_t nbytes = 0xfacefeedcafef00dULL; local
46 int rc = sync_file_range(fd, offset, nbytes, flags);
52 (long long) nbytes,
sync_file_range2.c 43 const off64_t nbytes = 0xfacefeedcafef00d; local
46 int rc = sync_file_range(fd, offset, nbytes, flags);
52 (long long) nbytes,
  /external/strace/tests-mx32/
sync_file_range.c 43 const off64_t nbytes = 0xfacefeedcafef00dULL; local
46 int rc = sync_file_range(fd, offset, nbytes, flags);
52 (long long) nbytes,
sync_file_range2.c 43 const off64_t nbytes = 0xfacefeedcafef00d; local
46 int rc = sync_file_range(fd, offset, nbytes, flags);
52 (long long) nbytes,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
bitset.c 10 int nbytes = NBYTES(nbits); local
11 bitset ss = (char *)PyObject_MALLOC(sizeof(BYTE) * nbytes);
16 ss += nbytes;
17 while (--nbytes >= 0)
53 for (i = NBYTES(nbits); --i >= 0; )
64 for (i = NBYTES(nbits); --i >= 0; )
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
bitset.c 10 int nbytes = NBYTES(nbits); local
11 bitset ss = (char *)PyObject_MALLOC(sizeof(BYTE) * nbytes);
16 ss += nbytes;
17 while (--nbytes >= 0)
53 for (i = NBYTES(nbits); --i >= 0; )
64 for (i = NBYTES(nbits); --i >= 0; )
  /external/libvpx/libvpx/
vpxstats.c 29 size_t nbytes; local
47 nbytes = fread(stats->buf.buf, 1, stats->buf.sz, stats->file);
48 res = (nbytes == stats->buf.sz);
  /external/python/cpython2/Parser/
bitset.c 10 int nbytes = NBYTES(nbits); local
11 bitset ss = (char *)PyObject_MALLOC(sizeof(BYTE) * nbytes);
16 ss += nbytes;
17 while (--nbytes >= 0)
53 for (i = NBYTES(nbits); --i >= 0; )
64 for (i = NBYTES(nbits); --i >= 0; )
  /external/syslinux/com32/libutil/
unbase64.c 47 size_t nbytes = 0; local
66 if (nbytes < bufsiz)
68 nbytes++;
75 return nbytes;
  /external/v4l2_codec2/vda/
bit_reader.cc 38 int nbytes = max_nbytes; local
39 if (nbytes > bytes_left_)
40 nbytes = bytes_left_;
43 data_ += nbytes;
44 bytes_left_ -= nbytes;
45 return nbytes;
  /external/valgrind/memcheck/tests/solaris/
sendfilev.c 25 ssize_t nbytes = write(test_fd, &chunk1, sizeof(chunk1)); local
26 if (nbytes != CHUNK) {
28 fprintf(stderr, "write failed (nbytes=%zd): %s (%d).\n",
29 nbytes, strerror(error), error);
54 nbytes = sendfilev(test_fd, vec, 2, &xferred);
55 if (nbytes < 0) {
65 nbytes = sendfilev(test_fd, vec, -1, &xferred);
66 if (nbytes < 0) {
78 nbytes = sendfilev(test_fd, vec, 1, &xferred);
79 if (nbytes < 0)
    [all...]
  /external/valgrind/perf/
heap.c 12 int i, j, nbytes = 0; local
31 arr[j] = malloc(nbytes);
34 for (jpdb=0; jpdb<nbytes; jpdb = jpdb+pdb) {
41 nbytes += 8;
42 if (nbytes > 32)
43 nbytes = 0;
  /external/pdfium/core/fxcrt/
fx_basic_utf.cpp 53 int nbytes = 0; local
55 nbytes = 2;
57 nbytes = 3;
59 nbytes = 4;
61 nbytes = 5;
63 nbytes = 6;
66 int order = 1 << ((nbytes - 1) * 6);
68 m_Buffer.AppendChar(prefix[nbytes - 2] | (code / order));
69 for (int i = 0; i < nbytes - 1; i++) {
  /external/valgrind/memcheck/tests/
malloc2.c 26 int i, j, k, nbytes; local
38 nbytes = 1 + myrandom() % M_TEST_MALLOC;
40 nbytes *= 17;
41 test_arr[j] = malloc( nbytes );
43 for (k = 1; k < nbytes; k++)
writev1.c 27 int nbytes; local
39 } else if ((nbytes = write(fd, buf_list[1], K_1)) != K_1) {
40 fprintf(stderr, "write(2) failed: nbytes = %d, errno = %d\n",
41 nbytes, errno);
62 if ((nbytes = read(fd, buf_list[0], CHUNK)) != 0)
63 fprintf(stderr, "Expected nbytes = 0, got %d\n", nbytes);
  /external/libjpeg-turbo/
jdatasrc.c 105 size_t nbytes; local
107 nbytes = JFREAD(src->infile, src->buffer, INPUT_BUF_SIZE);
109 if (nbytes <= 0) {
116 nbytes = 2;
120 src->pub.bytes_in_buffer = nbytes;
  /external/ltp/testcases/kernel/containers/pidns/
pidns04.c 110 int nbytes, status; local
126 nbytes = read(fd[0], readbuffer, sizeof(readbuffer));
128 if (0 <= nbytes) {
  /external/ltp/testcases/kernel/syscalls/pread/
pread03.c 100 size_t nbytes; /* no. of bytes to be written */ local
114 nbytes = K1;
117 TEST(pread(fd1, read_buf[0], nbytes, offset));
  /external/blktrace/btreplay/
btrecord.h 43 * @nbytes: Number of bytes to process
48 __u64 nbytes; member in struct:io_pkt

Completed in 753 milliseconds

1 2 3 4 5 6 7 8