/bionic/libc/netbsd/resolv/ |
res_cache.c | 519 _dnsPacket_checkBytes( DnsPacket* packet, int numBytes, const void* bytes ) 523 if (p + numBytes > packet->end) 526 if (memcmp(p, bytes, numBytes) != 0) 529 packet->cursor = p + numBytes; 780 _dnsPacket_hashBytes( DnsPacket* packet, int numBytes, unsigned hash ) 785 while (numBytes > 0 && p < end) { 923 _dnsPacket_isEqualBytes( DnsPacket* pack1, DnsPacket* pack2, int numBytes ) 928 if ( p1 + numBytes > pack1->end || p2 + numBytes > pack2->end ) 931 if ( memcmp(p1, p2, numBytes) != 0 [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/windows/gdi/ |
wgl.c | 404 int charWidth,charHeight,bmapWidth,bmapHeight,numBytes,res; 441 numBytes = (bmapWidth * bmapHeight) / 8; 442 bmap = malloc(numBytes);
|
/external/llvm/lib/Target/ARM/ |
ARMBaseInstrInfo.h | 386 unsigned DestReg, unsigned BaseReg, int NumBytes, 392 unsigned DestReg, unsigned BaseReg, int NumBytes, 398 int NumBytes, const TargetInstrInfo &TII,
|
/external/mesa3d/src/mesa/drivers/windows/gdi/ |
wgl.c | 404 int charWidth,charHeight,bmapWidth,bmapHeight,numBytes,res; 441 numBytes = (bmapWidth * bmapHeight) / 8; 442 bmap = malloc(numBytes);
|
/system/core/fastboot/ |
usb_osx.c | 472 UInt32 numBytes = len; 493 h->interface, h->bulkIn, data, &numBytes); 496 return (int) numBytes;
|
/external/chromium_org/media/base/android/ |
media_codec_bridge.cc | 364 int numBytes = base::checked_numeric_cast<int>(size); 371 base::android::ToJavaByteArray(env, buffer, numBytes);
|
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/decoder/ |
FwdLockFile.c | 299 ssize_t FwdLockFile_read(int fileDesc, void *pBuffer, size_t numBytes) { 307 numBytesRead = read(pSession->fileDesc, pBuffer, numBytes);
|
/frameworks/av/media/libstagefright/ |
WAVExtractor.cpp | 477 ssize_t numBytes = n; 479 while (numBytes-- > 0) {
|
/frameworks/base/core/java/android/speech/tts/ |
BlockingAudioTrack.java | 185 long getAudioLengthMs(int numBytes) { 186 final int unconsumedFrames = numBytes / mBytesPerFrame;
|
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videoproc/ |
BackDropperFilter.java | 616 int numBytes = mMaskFormat.getSize(); 617 byte[] initialBgMean = new byte[numBytes]; 618 byte[] initialBgVariance = new byte[numBytes]; 619 byte[] initialMaskVerify = new byte[numBytes]; 620 for (int i = 0; i < numBytes; i++) { 629 mBgMean[i].setData(initialBgMean, 0, numBytes); 632 mBgVariance[i].setData(initialBgVariance, 0, numBytes); 635 mMaskVerify[i].setData(initialMaskVerify, 0, numBytes); [all...] |
/external/llvm/include/llvm/MC/ |
MCStreamer.h | 465 /// EmitFill - Emit NumBytes bytes worth of the value specified by 467 virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue); 469 /// \brief Emit NumBytes worth of zeros. 471 virtual void EmitZeros(uint64_t NumBytes);
|
/hardware/qcom/media/mm-video-legacy/vidc/vdec/inc/ |
mp4_utils.h | 126 unsigned long int numBytes;
|
/hardware/qcom/media/mm-video-v4l2/vidc/vdec/inc/ |
mp4_utils.h | 126 unsigned long int numBytes;
|
/hardware/ti/omap3/dspbridge/inc/ |
dbreg.h | 109 #define WORDSIZE "WordSize" /* NumBytes in DSP Word */
|
/external/chromium_org/third_party/icu/source/i18n/ |
uspoof_impl.cpp | 645 void *SpoofData::reserveSpace(int32_t numBytes, UErrorCode &status) { 655 numBytes = (numBytes + 15) & ~15; // Round up to a multiple of 16 657 fMemLimit += numBytes; 660 uprv_memset((char *)fRawData + returnOffset, 0, numBytes);
|
/external/icu4c/i18n/ |
uspoof_impl.cpp | 666 void *SpoofData::reserveSpace(int32_t numBytes, UErrorCode &status) { 676 numBytes = (numBytes + 15) & ~15; // Round up to a multiple of 16 678 fMemLimit += numBytes; 681 uprv_memset((char *)fRawData + returnOffset, 0, numBytes);
|
/external/llvm/lib/Support/ |
raw_ostream.cpp | 302 size_t NumBytes = OutBufEnd - OutBufCur; 308 size_t BytesToWrite = Size - (Size % NumBytes); 321 copy_to_buffer(Ptr, NumBytes); 323 return write(Ptr + NumBytes, Size - NumBytes);
|
/dalvik/vm/alloc/ |
HeapSource.cpp | 291 static void countFree(Heap *heap, const void *ptr, size_t *numBytes) 305 *numBytes += delta; 1081 size_t numBytes = 0; 1093 countFree(heap, ptrs[i], &numBytes); [all...] |
/external/llvm/lib/MC/ |
MCAsmStreamer.cpp | 197 virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue); 732 /// EmitFill - Emit NumBytes bytes worth of the value specified by 734 void MCAsmStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue) { 735 if (NumBytes == 0) return; 738 OS << ZeroDirective << NumBytes; 746 MCStreamer::EmitFill(NumBytes, FillValue); [all...] |
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
RuntimeDyldMachO.cpp | 299 unsigned NumBytes = 1 << Size; 301 memcpy(&Addend, LocalAddress, NumBytes);
|
/external/smack/src/org/xbill/DNS/ |
Message.java | 532 numBytes() { 588 sb.append(";; Message size: " + numBytes() + " bytes");
|
/frameworks/av/drm/drmserver/ |
DrmManager.cpp | 541 void* buffer, ssize_t numBytes, off64_t offset) { 547 result = drmEngine->pread(uniqueId, decryptHandle, buffer, numBytes, offset);
|
/frameworks/av/drm/libdrmframework/include/ |
DrmManagerClientImpl.h | 395 * @param[in] numBytes Number of bytes to read. 401 void* buffer, ssize_t numBytes, off64_t offset);
|
/frameworks/av/drm/libdrmframework/plugins/common/include/ |
IDrmEngine.h | 422 * @param[in] numBytes Number of bytes to read. 428 void* buffer, ssize_t numBytes, off64_t offset) = 0;
|
/frameworks/av/include/drm/ |
DrmManagerClient.h | 179 * @param[in] numBytes Number of bytes to read. 185 void* buffer, ssize_t numBytes, off64_t offset);
|