/frameworks/av/include/drm/ |
DrmManagerClient.h | 179 * @param[in] numBytes Number of bytes to read. 185 void* buffer, ssize_t numBytes, off64_t offset);
|
/external/deqp/framework/delibs/decpp/ |
deArrayBuffer.hpp | 36 void* ArrayBuffer_AlignedMalloc (size_t numBytes, size_t alignment);
|
/external/llvm/include/llvm/CodeGen/ |
StackMaps.h | 29 /// [<def>], <id>, <numBytes>, <target>, <numArgs>, <cc>, ...
|
/external/llvm/lib/Target/WebAssembly/ |
WebAssemblyISelLowering.cpp | 386 unsigned NumBytes = CCInfo.getAlignedCallFrameSize(); 389 if (NumBytes) { 390 NB = DAG.getConstant(NumBytes, DL, PtrVT, true); 453 if (NumBytes) {
|
/external/llvm/lib/Target/X86/ |
X86FrameLowering.h | 125 int64_t NumBytes, bool InEpilogue) const;
|
/frameworks/av/drm/libdrmframework/plugins/passthru/src/ |
DrmPassthruPlugIn.cpp | 302 void* buffer, ssize_t numBytes, off64_t offset) {
|
/frameworks/native/services/surfaceflinger/DisplayHardware/ |
HWC2.cpp | 185 uint32_t numBytes = 0; 186 mDump(mHwcDevice, &numBytes, nullptr); 188 std::vector<char> buffer(numBytes); 189 mDump(mHwcDevice, &numBytes, buffer.data()); [all...] |
/hardware/intel/common/wrs_omxil_core/core/src/ |
intel_video_config_parser.cpp | 77 psBits.numBytes = aInputs->inBytes;
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
lmerrlog.h | 43 NET_API_STATUS WINAPI NetErrorLogWrite(LPBYTE reserved1,DWORD code,LPCWSTR component,LPBYTE buffer,DWORD numbytes,LPBYTE msgbuf,DWORD strcount,LPBYTE reserved2);
|
/external/libgdx/backends/gdx-backend-jglfw/src/com/badlogic/gdx/backends/jglfw/ |
JglfwGL20.java | 34 private void ensureBufferCapacity (int numBytes) {
35 if (buffer == null || buffer.capacity() < numBytes) {
36 buffer = com.badlogic.gdx.utils.BufferUtils.newByteBuffer(numBytes);
|
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/utils/ |
BufferUtils.java | 489 public static ByteBuffer newByteBuffer (int numBytes) {
491 ByteBuffer buffer = ByteBuffer.allocateDirect(numBytes);
495 return ByteBuffer.wrap(new byte[numBytes]);
|
/external/llvm/lib/Target/AArch64/MCTargetDesc/ |
AArch64AsmBackend.cpp | 207 unsigned NumBytes = getFixupKindNumBytes(Fixup.getKind()); 218 assert(Offset + NumBytes <= DataSize && "Invalid fixup offset!"); 222 for (unsigned i = 0; i != NumBytes; ++i)
|
/external/llvm/lib/Target/BPF/ |
BPFISelLowering.cpp | 285 unsigned NumBytes = CCInfo.getNextStackOffset(); 305 Chain, DAG.getConstant(NumBytes, CLI.DL, PtrVT, true), CLI.DL); 376 Chain, DAG.getConstant(NumBytes, CLI.DL, PtrVT, true),
|
/external/llvm/lib/Target/PowerPC/ |
PPCFastISel.cpp | 185 unsigned &NumBytes, 187 bool finishCall(MVT RetVT, CallLoweringInfo &CLI, unsigned &NumBytes); [all...] |
PPCISelLowering.cpp | [all...] |
/external/tpm2/ |
CpriHash.c | 163 // NUMBYTES evpCtxSize = sizeof(EVP_MD_CTX); 164 NUMBYTES cpriStateSize = sizeof(cpriState->state); 166 NUMBYTES osslStateSize = sizeof(OSSL_HASH_STATE); [all...] |
/frameworks/av/drm/libdrmframework/plugins/common/include/ |
DrmEngineBase.h | 104 void* buffer, ssize_t numBytes, off64_t offset); 517 * @param[in] numBytes Number of bytes to read. 523 void* buffer, ssize_t numBytes, off64_t offset) = 0;
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
UiccCarrierPrivilegeRules.java | 174 int numBytes = firstByte - SINGLE_BYTE_MAX_LENGTH; 175 length = Integer.parseInt(data.substring(offset + 2, offset + 2 + numBytes * 2), 16) * 2; 176 lengthBytes = data.substring(offset, offset + 2 + numBytes * 2);
|
/packages/apps/Camera2/src/com/android/camera/one/v2/ |
OneCameraImpl.java | [all...] |
/external/clang/lib/CodeGen/ |
CGRecordLayoutBuilder.cpp | 126 /// \brief Gets an llvm type of size NumBytes and alignment 1. 127 llvm::Type *getByteArrayType(CharUnits NumBytes) { 128 assert(!NumBytes.isZero() && "Empty byte arrays aren't allowed."); 130 return NumBytes == CharUnits::One() ? Type : 131 (llvm::Type *)llvm::ArrayType::get(Type, NumBytes.getQuantity()); [all...] |
/external/llvm/lib/Transforms/Scalar/ |
LoopIdiomRecognize.cpp | 570 Value *NumBytes = 576 Builder.CreateMemSet(BasePtr, SplatValue, NumBytes, StoreAlignment); 594 NewCall = Builder.CreateCall(MSP, {BasePtr, PatternPtr, NumBytes}); 700 Value *NumBytes = 704 Builder.CreateMemCpy(StoreBasePtr, LoadBasePtr, NumBytes, [all...] |
/external/llvm/lib/CodeGen/AsmPrinter/ |
DwarfUnit.cpp | 599 int NumBytes = FltVal.getBitWidth() / 8; // 8 bits per byte. 602 int Start = (LittleEndian ? 0 : NumBytes - 1); 603 int Stop = (LittleEndian ? NumBytes : -1); 653 int NumBytes = Val.getBitWidth() / 8; // 8 bits per byte. 657 for (int i = 0; i < NumBytes; i++) { 662 c = Ptr64[(NumBytes - 1 - i) / 8] >> (8 * ((NumBytes - 1 - i) & 7)); [all...] |
/hardware/bsp/intel/peripheral/libupm/src/pn532/ |
pn532.cxx | 103 @param numBytes Data length in bytes 106 static void PrintHex(const uint8_t * data, const uint32_t numBytes) 109 for (szPos=0; szPos < numBytes; szPos++) 124 @param numBytes Data length in bytes 127 static void PrintHexChar(const uint8_t * data, const uint32_t numBytes) 130 for (szPos=0; szPos < numBytes; szPos++) 135 for (szPos=0; szPos < numBytes; szPos++) [all...] |
/external/llvm/lib/Target/AArch64/ |
AArch64FastISel.cpp | 239 unsigned &NumBytes); 240 bool finishCall(CallLoweringInfo &CLI, MVT RetVT, unsigned NumBytes); 654 uint64_t NumBytes = 0; 657 NumBytes = NumBits / 8; 659 NumBytes = 0; 662 if (NumBytes != (1ULL << Val)) 738 uint64_t NumBytes = 0; 741 NumBytes = NumBits / 8; 743 NumBytes = 0; 746 if (NumBytes != (1ULL << Val) [all...] |
/external/llvm/lib/Target/ARM/ |
ARMFastISel.cpp | 203 unsigned &NumBytes, 208 unsigned &NumBytes, bool isVarArg); [all...] |