Home
last modified time | relevance | path

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

12

/external/fonttools/Lib/fontTools/ttLib/tables/
DttProgram.py323 nBytes = 0
324 while nWords+nBytes < nArgs and nBytes < 255 and 0 <= args[nWords+nBytes] <= 255:
325 nBytes += 1
326 if nBytes < 2 and nWords + nBytes < 255 and nWords + nBytes != nArgs:
328 nWords += nBytes
347 if nBytes:
349 if nBytes <= 8:
351 op = op + nBytes - 1
356 push(nBytes)
357 for value in args[nWords:nWords+nBytes]:
[all …]
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
Dandroid_logmsg.cpp201 UINT32 nBytes = ((BT_HDR_SIZE + p_buf->offset + p_buf->len)*2)+1; in DispHciCmd() local
208 if (nBytes > sizeof(log_line)) in DispHciCmd()
219 UINT32 nBytes = ((BT_HDR_SIZE + p_buf->offset + p_buf->len)*2)+1; in DispHciEvt() local
226 if (nBytes > sizeof(log_line)) in DispHciEvt()
245 UINT32 nBytes = ((BT_HDR_SIZE + p_buf->offset + p_buf->len)*2)+1; in DispLLCP() local
252 if (nBytes > sizeof(log_line)) in DispLLCP()
271 UINT32 nBytes = (len*2)+1; in DispHcp() local
280 if (nBytes > sizeof(log_line)) in DispHcp()
/external/mesa3d/src/gallium/state_trackers/wgl/
Dstw_wgl.c169 UINT nBytes, in wglDescribePixelFormat() argument
172 return DrvDescribePixelFormat( hdc, iPixelFormat, nBytes, ppfd ); in wglDescribePixelFormat()
295 UINT nBytes, in wglDescribeLayerPlane() argument
298 return DrvDescribeLayerPlane(hdc, iPixelFormat, iLayerPlane, nBytes, plpd); in wglDescribeLayerPlane()
Dstw_wgl.h51 UINT nBytes,
Dstw_pixelformat.c352 UINT nBytes, in DrvDescribeLayerPlane() argument
/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/aac/libFDK/src/
DFDK_crc.cpp190 INT nBytes
370 INT nBytes in calcCrc_Bytes() argument
377 for (i=0; i<nBytes; i++) { in calcCrc_Bytes()
382 for (i=0; i<nBytes; i++) { in calcCrc_Bytes()
/external/icu/icu4c/source/test/perf/ubrkperf/
Dubrkperfold.cpp589 int nBytes; in get() local
590 if (ch >= 0xF0) {nBytes=4;} in get()
591 else if (ch >= 0xE0) {nBytes=3;} in get()
592 else if (ch >= 0xC0) {nBytes=2;} in get()
602 for (i=1; i<nBytes; i++) { in get()
605 … Expected %d bytes, byte %d is invalid. First byte is %02X\n", fName, ftell(fFile), nBytes, i, ch); in get()
/external/llvm/lib/Target/NVPTX/
DNVPTXAsmPrinter.h140 unsigned int nBytes = 4; in print() local
142 nBytes = 8; in print()
143 for (pos = 0; pos < size; pos += nBytes) { in print()
171 } else if (nBytes == 4) in print()
/external/valgrind/none/tests/x86/
Dx86locked.c98 static UInt crcBytes ( UChar* bytes, UWord nBytes, UInt crcIn ) in crcBytes() argument
101 while (nBytes >= 4) { in crcBytes()
107 nBytes -= 4; in crcBytes()
109 while (nBytes >= 1) { in crcBytes()
112 nBytes -= 1; in crcBytes()
/external/libvncserver/libvncclient/
Dultra.c45 toRead = rfbClientSwap32IfLE(hdr.nBytes); in HandleUltraBPP()
128 toRead = rfbClientSwap32IfLE(hdr.nBytes); in HandleUltraZipBPP()
Dzlib.c65 remaining = rfbClientSwap32IfLE(hdr.nBytes); in HandleZlibBPP()
/external/mesa3d/src/mesa/drivers/windows/gdi/
Dwgl.c298 UINT nBytes, in wglDescribePixelFormat() argument
306 nBytes != sizeof(PIXELFORMATDESCRIPTOR)) in wglDescribePixelFormat()
637 UINT nBytes, in wglDescribeLayerPlane() argument
641 (void) nBytes; (void) plpd; in wglDescribeLayerPlane()
/external/valgrind/none/tests/amd64/
Damd64locked.c98 static UInt crcBytes ( UChar* bytes, UWord nBytes, UInt crcIn ) in crcBytes() argument
101 while (nBytes >= 4) { in crcBytes()
107 nBytes -= 4; in crcBytes()
109 while (nBytes >= 1) { in crcBytes()
112 nBytes -= 1; in crcBytes()
/external/aac/libAACdec/src/
Daacdecoder_lib.cpp763 int nBytes; in aacDecoder_UpdateBitStreamCounters() local
765 nBytes = nBits>>3; in aacDecoder_UpdateBitStreamCounters()
766 pSi->numTotalBytes += nBytes; in aacDecoder_UpdateBitStreamCounters()
771 pSi->numBadBytes += nBytes; in aacDecoder_UpdateBitStreamCounters()
/external/pdfium/core/src/fxge/dib/
Dfx_dib_transform.cpp97 int nBytes = GetBPP() / 8; in SwapXY() local
99 if (nBytes == 3) { in SwapXY()
104 FX_LPBYTE dest_scan = dest_buf + dest_col * nBytes; in SwapXY()
108 if (nBytes == 4) { in SwapXY()
115 FX_LPCBYTE src_scan = GetScanline(row) + col_start * nBytes; in SwapXY()
116 if (nBytes == 1) in SwapXY()
/external/valgrind/coregrind/
Dm_mallocfree.c1369 ULong nBytes; member
1381 if (ancc1->nBytes < ancc2->nBytes) return 1; in cmp_AnCC_by_vol()
1382 if (ancc1->nBytes > ancc2->nBytes) return -1; in cmp_AnCC_by_vol()
1457 anCCs[k].nBytes = 0; in cc_analyse_alloc_arena()
1463 anCCs[k].nBytes += (ULong)bszB_to_pszB(a, b_bszB); in cc_analyse_alloc_arena()
1475 anCCs[n_ccs].nBytes = a->stats__perm_bytes_on_loan; in cc_analyse_alloc_arena()
1485 anCCs[k].nBytes, anCCs[k].nBlocks, anCCs[k].cc ); in cc_analyse_alloc_arena()
/external/icu/icu4c/source/test/perf/collationperf/
Dcollperf.cpp1318 int nBytes; in get() local
1319 if (ch >= 0xF0) {nBytes=4;} in get()
1320 else if (ch >= 0xE0) {nBytes=3;} in get()
1321 else if (ch >= 0xC0) {nBytes=2;} in get()
1331 for (i=1; i<nBytes; i++) { in get()
/external/libvncserver/libvncserver/
Dultra.c126 hdr.nBytes = Swap32IfLE(cl->afterEncBufLen); in rfbSendOneRectEncodingUltra()
Dzlib.c225 hdr.nBytes = Swap32IfLE(zlibAfterBufLen); in rfbSendOneRectEncodingZlib()
/external/libvncserver/rfb/
Drfbproto.h713 uint32_t nBytes; member
/external/fonttools/Lib/fontTools/misc/
DpsCharStrings.py337 def getBytes(self, index, nBytes): argument
339 newIndex = index + nBytes
345 assert len(bytes) == nBytes
/external/valgrind/VEX/switchback/
Dtest_bzip2.c3644 Int32 nGroups, nBytes; in sendMTFValues() local
3904 nBytes = s->numZ; in sendMTFValues()
3915 VPrintf1( " bytes: mapping %d, ", s->numZ-nBytes ); in sendMTFValues()
3919 nBytes = s->numZ; in sendMTFValues()
3927 VPrintf1( "selectors %d, ", s->numZ-nBytes ); in sendMTFValues()
3930 nBytes = s->numZ; in sendMTFValues()
3943 VPrintf1 ( "code lengths %d, ", s->numZ-nBytes ); in sendMTFValues()
3946 nBytes = s->numZ; in sendMTFValues()
3998 VPrintf1( "codes %d\n", s->numZ-nBytes ); in sendMTFValues()
/external/libopus/src/
Dopus_encoder.c933 opus_int32 nBytes; in opus_encode_native() local
1576 nBytes = IMIN(1275, max_data_bytes-1-redundancy_bytes); in opus_encode_native()
1578 st->silk_mode.maxBits = nBytes*8; in opus_encode_native()
1619 ret = silk_Encode( silk_enc, &st->silk_mode, pcm_silk, frame_size, &enc, &nBytes, 0 ); in opus_encode_native()
1626 if (nBytes==0) in opus_encode_native()
/external/valgrind/memcheck/tests/
Dorigin5-bz2.c3661 Int32 nGroups, nBytes; in sendMTFValues() local
3921 nBytes = s->numZ; in sendMTFValues()
3932 VPrintf1( " bytes: mapping %d, ", s->numZ-nBytes ); in sendMTFValues()
3936 nBytes = s->numZ; in sendMTFValues()
3944 VPrintf1( "selectors %d, ", s->numZ-nBytes ); in sendMTFValues()
3947 nBytes = s->numZ; in sendMTFValues()
3960 VPrintf1 ( "code lengths %d, ", s->numZ-nBytes ); in sendMTFValues()
3963 nBytes = s->numZ; in sendMTFValues()
4015 VPrintf1( "codes %d\n", s->numZ-nBytes ); in sendMTFValues()

12