Home
last modified time | relevance | path

Searched refs:nBytes (Results 1 – 25 of 50) sorted by relevance

12

/external/fonttools/Lib/fontTools/ttLib/tables/
DttProgram.py360 nBytes = 0
361 while nWords+nBytes < nArgs and nBytes < 255 and 0 <= args[nWords+nBytes] <= 255:
362 nBytes += 1
363 if nBytes < 2 and nWords + nBytes < 255 and nWords + nBytes != nArgs:
365 nWords += nBytes
384 if nBytes:
386 if nBytes <= 8:
388 op = op + nBytes - 1
393 push(nBytes)
394 for value in args[nWords:nWords+nBytes]:
[all …]
/external/libevent/
Dbuffer_iocp.c98 evbuffer_commit_read_(struct evbuffer *evbuf, ev_ssize_t nBytes) in evbuffer_commit_read_() argument
107 EVUTIL_ASSERT(nBytes >= 0); /* XXXX Can this be false? */ in evbuffer_commit_read_()
114 remaining = nBytes; in evbuffer_commit_read_()
130 evbuf->total_len += nBytes; in evbuffer_commit_read_()
131 evbuf->n_add_for_cb += nBytes; in evbuffer_commit_read_()
139 evbuffer_commit_write_(struct evbuffer *evbuf, ev_ssize_t nBytes) in evbuffer_commit_write_() argument
146 evbuffer_drain(evbuf, nBytes); in evbuffer_commit_write_()
Devent_iocp.c56 handle_entry(OVERLAPPED *o, ULONG_PTR completion_key, DWORD nBytes, int ok) in handle_entry() argument
60 eo->cb(eo, completion_key, nBytes, ok); in handle_entry()
/external/oj-libjdwp/src/solaris/transport/socket/
Dsocket_md.c88 dbgsysRecvFrom(int fd, char *buf, size_t nBytes, in dbgsysRecvFrom() argument
92 rv = recvfrom(fd, buf, nBytes, flags, from, fromlen); in dbgsysRecvFrom()
110 dbgsysRecv(int fd, char *buf, size_t nBytes, int flags) { in dbgsysRecv() argument
113 rv = recv(fd, buf, nBytes, flags); in dbgsysRecv()
120 dbgsysSend(int fd, char *buf, size_t nBytes, int flags) { in dbgsysSend() argument
123 rv = send(fd, buf, nBytes, flags); in dbgsysSend()
/external/ms-tpm-20-ref/TPMCmd/tpm/src/crypt/
DBnConvert.c54 NUMBYTES nBytes in BnFromBytes() argument
62 size = (bytes != NULL) ? BYTES_TO_CRYPT_WORDS(nBytes) : 0; in BnFromBytes()
76 pFrom = bytes + nBytes - 1; in BnFromBytes()
79 for(; nBytes != 0; nBytes--) in BnFromBytes()
/external/aac/libFDK/src/
DFDK_crc.cpp221 HANDLE_FDK_BITSTREAM hBs, INT nBytes);
377 HANDLE_FDK_BITSTREAM hBs, INT nBytes) { in calcCrc_Bytes() argument
384 for (i = 0; i < (nBytes >> 2); i++) { in calcCrc_Bytes()
395 bits = (nBytes & 3) << 3; in calcCrc_Bytes()
403 for (i = 0; i < nBytes; i++) { in calcCrc_Bytes()
410 return (nBytes); in calcCrc_Bytes()
/external/oj-libjdwp/src/share/transport/socket/
DsysSocket.h46 int dbgsysRecvFrom(int fd, char *buf, size_t nBytes, int flags, struct sockaddr *from, socklen_t *f…
48 int dbgsysRecv(int fd, char *buf, size_t nBytes, int flags);
49 int dbgsysSend(int fd, char *buf, size_t nBytes, int flags);
/external/bzip2/
Dcompress.c243 Int32 nGroups, nBytes; in sendMTFValues() local
503 nBytes = s->numZ; in sendMTFValues()
514 VPrintf1( " bytes: mapping %d, ", s->numZ-nBytes ); in sendMTFValues()
518 nBytes = s->numZ; in sendMTFValues()
526 VPrintf1( "selectors %d, ", s->numZ-nBytes ); in sendMTFValues()
529 nBytes = s->numZ; in sendMTFValues()
542 VPrintf1 ( "code lengths %d, ", s->numZ-nBytes ); in sendMTFValues()
545 nBytes = s->numZ; in sendMTFValues()
597 VPrintf1( "codes %d\n", s->numZ-nBytes ); in sendMTFValues()
/external/llvm-project/llvm/lib/Target/NVPTX/
DNVPTXAsmPrinter.h152 unsigned int nBytes = 4; in print() local
154 nBytes = 8; in print()
155 for (pos = 0; pos < size; pos += nBytes) { in print()
186 } else if (nBytes == 4) in print()
/external/mesa3d/src/gallium/frontends/wgl/
Dstw_wgl.c181 UINT nBytes, in wglDescribePixelFormat() argument
184 return DrvDescribePixelFormat( hdc, iPixelFormat, nBytes, ppfd ); in wglDescribePixelFormat()
342 UINT nBytes, in wglDescribeLayerPlane() argument
345 return DrvDescribeLayerPlane(hdc, iPixelFormat, iLayerPlane, nBytes, plpd); in wglDescribeLayerPlane()
Dstw_wgl.h51 UINT nBytes,
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
DNVPTXAsmPrinter.h152 unsigned int nBytes = 4; in print() local
154 nBytes = 8; in print()
155 for (pos = 0; pos < size; pos += nBytes) { in print()
186 } else if (nBytes == 4) in print()
/external/llvm/lib/Target/NVPTX/
DNVPTXAsmPrinter.h150 unsigned int nBytes = 4; in print() local
152 nBytes = 8; in print()
153 for (pos = 0; pos < size; pos += nBytes) { in print()
184 } else if (nBytes == 4) in print()
/external/icu/icu4c/source/test/perf/ubrkperf/
Dubrkperfold.cpp594 int nBytes; in get() local
595 if (ch >= 0xF0) {nBytes=4;} in get()
596 else if (ch >= 0xE0) {nBytes=3;} in get()
597 else if (ch >= 0xC0) {nBytes=2;} in get()
607 for (i=1; i<nBytes; i++) { in get()
610 … Expected %d bytes, byte %d is invalid. First byte is %02X\n", fName, ftell(fFile), nBytes, i, ch); in get()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
DBigIntegers.java338 int nBytes = (bitLength + 7) / 8; in createRandom() local
340 byte[] rv = new byte[nBytes]; in createRandom()
345 int xBits = 8 * nBytes - bitLength; in createRandom()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/util/
DBigIntegers.java340 int nBytes = (bitLength + 7) / 8; in createRandom() local
342 byte[] rv = new byte[nBytes]; in createRandom()
347 int xBits = 8 * nBytes - bitLength; in createRandom()
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/util/
DBigIntegers.java340 int nBytes = (bitLength + 7) / 8; in createRandom() local
342 byte[] rv = new byte[nBytes]; in createRandom()
347 int xBits = 8 * nBytes - bitLength; in createRandom()
/external/ms-tpm-20-ref/TPMCmd/tpm/include/prototypes/
DBnConvert_fp.h51 NUMBYTES nBytes
/external/guava/android/guava/src/com/google/common/hash/
DMurmur3_32HashFunction.java273 private void update(int nBytes, long update) { in update() argument
276 shift += nBytes * 8; in update()
277 length += nBytes; in update()
/external/guava/guava/src/com/google/common/hash/
DMurmur3_32HashFunction.java273 private void update(int nBytes, long update) { in update() argument
276 shift += nBytes * 8; in update()
277 length += nBytes; in update()
/external/icu/icu4c/source/test/perf/collationperf/
Dcollperf.cpp1321 int nBytes; in get() local
1322 if (ch >= 0xF0) {nBytes=4;} in get()
1323 else if (ch >= 0xE0) {nBytes=3;} in get()
1324 else if (ch >= 0xC0) {nBytes=2;} in get()
1334 for (i=1; i<nBytes; i++) { in get()
/external/fonttools/Lib/fontTools/ttLib/
Dwoff2.py837 nBytes = 1
839 nBytes = 2
841 nBytes = 3
843 nBytes = 4
844 assert ((tripletIndex + nBytes) <= nTriplets)
871 tripletIndex += nBytes
/external/pdfium/core/fxge/dib/
Dcfx_dibbase.cpp1149 int nBytes = GetBPP() / 8; in SwapXY() local
1151 if (nBytes == 3) in SwapXY()
1156 uint8_t* dest_scan = dest_buf + dest_col * nBytes; in SwapXY()
1159 if (nBytes == 4) { in SwapXY()
1168 const uint8_t* src_scan = GetScanline(row) + col_start * nBytes; in SwapXY()
1169 if (nBytes == 1) { in SwapXY()
/external/oj-libjdwp/src/share/javavm/export/
Djvm.h1252 JVM_Recv(jint fd, char *buf, jint nBytes, jint flags);
1255 JVM_Send(jint fd, char *buf, jint nBytes, jint flags);
1273 JVM_RecvFrom(jint fd, char *buf, int nBytes,
/external/angle/src/libGL/
Dentry_points_wgl.cpp198 UINT nBytes, in wglDescribeLayerPlane() argument

12