/external/llvm/docs/ |
StackMaps.rst | 190 @llvm.experimental.patchpoint.void(i64 <id>, i32 <numBytes>, 193 @llvm.experimental.patchpoint.i64(i64 <id>, i32 <numBytes>, 245 The patch point also emits nops to cover at least ``<numBytes>`` of 247 ``<numBytes>`` is enough to encode a call to the target address on the
|
/external/llvm/include/llvm/MC/ |
MCObjectStreamer.h | 129 void EmitFill(uint64_t NumBytes, uint8_t FillValue) override;
|
MCStreamer.h | 564 /// \brief Emit NumBytes bytes worth of the value specified by FillValue. 566 virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue); 568 /// \brief Emit NumBytes worth of zeros. 570 void EmitZeros(uint64_t NumBytes);
|
/external/llvm/tools/yaml2obj/ |
yaml2coff.cpp | 256 template <size_t NumBytes> struct zeros_impl {}; 258 template <size_t NumBytes> 259 raw_ostream &operator<<(raw_ostream &OS, const zeros_impl<NumBytes> &) { 260 char Buffer[NumBytes];
|
/frameworks/av/media/libstagefright/httplive/ |
LiveSession.h | 271 void addBandwidthMeasurement(size_t numBytes, int64_t delayUs);
|
/hardware/libhardware/tests/vehicle/ |
vehicle-hal-tool.c | 263 int numBytes = (len + 1) / 3; 264 uint8_t *buf = calloc(numBytes, sizeof(uint8_t)); 266 for (int i = 0; byte != NULL && i < numBytes; i++) { 270 vehicle_data.value.bytes_value.len = numBytes;
|
/hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/inc/ |
mp4_utils.h | 126 unsigned long int numBytes;
|
/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/inc/ |
mp4_utils.h | 126 unsigned long int numBytes;
|
/hardware/qcom/media/msm8996/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 */
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
lmaudit.h | 30 DWORD WINAPI NetAuditWrite(DWORD type,LPBYTE buf,DWORD numbytes,LPCWSTR service,LPBYTE reserved);
|
/prebuilts/go/darwin-x86/src/os/ |
file_windows.go | 262 numBytes := len(b) 263 if numBytes > 16000 { 264 numBytes = 16000 267 wchars := make([]uint16, numBytes)
|
/prebuilts/go/linux-x86/src/os/ |
file_windows.go | 262 numBytes := len(b) 263 if numBytes > 16000 { 264 numBytes = 16000 267 wchars := make([]uint16, numBytes)
|
/external/llvm/lib/Target/Mips/ |
MipsFastISel.cpp | 183 unsigned &NumBytes); 184 bool finishCall(CallLoweringInfo &CLI, MVT RetVT, unsigned NumBytes); [all...] |
/external/icu/icu4c/source/i18n/ |
uspoof_impl.cpp | 691 void *SpoofData::reserveSpace(int32_t numBytes, UErrorCode &status) { 701 numBytes = (numBytes + 15) & ~15; // Round up to a multiple of 16 703 fMemLimit += numBytes; 706 uprv_memset((char *)fRawData + returnOffset, 0, numBytes);
|
/frameworks/base/core/java/android/app/backup/ |
BackupTransport.java | 452 * Tells the transport to read {@code numBytes} bytes of data from the socket file 456 * @param numBytes The number of bytes of tarball data available to be read from the 463 public int sendBackupData(int numBytes) { 677 public int sendBackupData(int numBytes) throws RemoteException { 678 return BackupTransport.this.sendBackupData(numBytes);
|
/external/llvm/lib/MC/ |
MCAsmStreamer.cpp | 180 void EmitFill(uint64_t NumBytes, uint8_t FillValue) override; 783 /// EmitFill - Emit NumBytes bytes worth of the value specified by 785 void MCAsmStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue) { 786 if (NumBytes == 0) return; 789 OS << ZeroDirective << NumBytes; 797 MCStreamer::EmitFill(NumBytes, FillValue); [all...] |
MCObjectStreamer.cpp | 439 void MCObjectStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue) { 443 insert(new MCFillFragment(FillValue, ItemSize, NumBytes));
|
/frameworks/av/drm/common/ |
IDrmManagerService.cpp | 774 ssize_t numBytes, off64_t offset) { 784 data.writeInt32(numBytes); [all...] |
/external/deqp/execserver/ |
xsWin32TestProcess.cpp | 754 int Win32TestProcess::readTestLog (deUint8* dst, int numBytes) 773 return m_testLogReader.read(dst, numBytes);
|
/external/deqp/framework/qphelper/ |
qpXmlWriter.h | 147 * \param numBytes Length of data in bytes 150 deBool qpXmlWriter_writeBase64 (qpXmlWriter* writer, const deUint8* data, size_t numBytes);
|
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/session/ |
DefaultSession.java | 243 public void sendData(byte[] data, int numBytes) {
246 dataOutputStream.write(data, 0, numBytes);
|
/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;
|