HomeSort by relevance Sort by last modified time
    Searched full:datasize (Results 101 - 125 of 786) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/libopus/silk/float/
SigProc_FLP.h 122 opus_int dataSize
130 opus_int dataSize
137 opus_int dataSize
143 opus_int dataSize
  /external/lzma/CPP/7zip/Common/
StreamObjects.cpp 137 size_t dataSize = (size_t)1 << sizeLog;
138 if (_data == 0 || dataSize != _dataSize)
141 _data = (Byte *)MidAlloc(dataSize);
144 _dataSize = dataSize;
  /external/sfntly/cpp/src/sfntly/table/truetype/
loca_table.cc 58 return 2 * data_->ReadUShort(index * DataSize::kUSHORT);
60 return data_->ReadULongAsInt(index * DataSize::kULONG);
175 return loca_.size() * DataSize::kULONG;
177 return loca_.size() * DataSize::kUSHORT;
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
CaptureLoader.java 102 int dataSize = in.readInt();
104 byte[] data = new byte[dataSize];
106 while (read < dataSize) {
107 read += in.read(data, read, dataSize - read);
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/
index_sub_table_format1.cc 32 return (last - first + 1 + 1) * DataSize::kULONG;
67 loca * DataSize::kULONG);
171 offset_array_.size() * DataSize::kULONG;
252 i * DataSize::kULONG));
266 (last_glyph_index - first_glyph_index + 1 + 1) * DataSize::kULONG;
index_sub_table_format3.cc 55 return (last - first + 1 + 1) * DataSize::kUSHORT;
67 loca * DataSize::kUSHORT);
183 offset_array_.size() * DataSize::kULONG;
248 i * DataSize::kUSHORT));
262 (last_glyph_index - first_glyph_index + 1 + 1) * DataSize::kUSHORT;
  /external/chromium_org/third_party/skia/src/core/
SkMetaData.cpp 111 void* SkMetaData::set(const char name[], const void* data, size_t dataSize, Type type, int count)
114 SkASSERT(dataSize);
120 Rec* rec = Rec::Alloc(sizeof(Rec) + dataSize * count + len + 1);
127 rec->fDataLen = SkToU8(dataSize);
130 memcpy(rec->data(), data, dataSize * count);
  /external/sfntly/cpp/src/sfntly/table/bitmap/
index_sub_table_format1.cc 32 return (last - first + 1 + 1) * DataSize::kULONG;
67 loca * DataSize::kULONG);
171 offset_array_.size() * DataSize::kULONG;
252 i * DataSize::kULONG));
266 (last_glyph_index - first_glyph_index + 1 + 1) * DataSize::kULONG;
index_sub_table_format3.cc 55 return (last - first + 1 + 1) * DataSize::kUSHORT;
67 loca * DataSize::kUSHORT);
183 offset_array_.size() * DataSize::kULONG;
248 i * DataSize::kUSHORT));
262 (last_glyph_index - first_glyph_index + 1 + 1) * DataSize::kUSHORT;
  /external/skia/src/core/
SkMetaData.cpp 111 void* SkMetaData::set(const char name[], const void* data, size_t dataSize, Type type, int count)
114 SkASSERT(dataSize);
120 Rec* rec = Rec::Alloc(sizeof(Rec) + dataSize * count + len + 1);
127 rec->fDataLen = SkToU8(dataSize);
130 memcpy(rec->data(), data, dataSize * count);
  /hardware/samsung_slsi/exynos5/exynos_omx/codecs/exynos_codecs/video/exynos5/mfc_v4l2/include/
ExynosVideoApi.h 108 unsigned int dataSize;
283 ExynosVideoErrorType (*Enqueue)(void *pHandle, unsigned char *pBuffer[], unsigned int dataSize[], int nPlanes, void *pPrivate);
290 ExynosVideoErrorType (*ExtensionEnqueue)(void *pHandle, unsigned char *pBuffer[], unsigned int *pFd[], unsigned int allocLen[], unsigned int dataSize[], int nPlanes, void *pPrivate);
307 ExynosVideoErrorType (*Enqueue)(void *pHandle, unsigned char *pBuffer[], unsigned int dataSize[], int nPlanes, void *pPrivate);
313 ExynosVideoErrorType (*ExtensionEnqueue)(void *pHandle, unsigned char *pBuffer[], unsigned int *pFd[], unsigned int allocLen[], unsigned int dataSize[], int nPlanes, void *pPrivate);
  /system/core/cpio/
mkbootfs.c 87 static void _eject(struct stat *s, char *out, int olen, char *data, unsigned datasize)
111 datasize,
131 if(datasize) {
132 fwrite(data, datasize, 1, stdout);
133 total_size += datasize;
  /external/libvpx/libvpx/third_party/libwebm/
mkvmuxerutil.cpp 72 // Datasize
86 // Datasize
89 // Size of Datasize
99 // Datasize
102 // Size of Datasize
115 // Datasize
118 // Size of Datasize
131 // Datasize
134 // Size of Datasize
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libwebm/
mkvmuxerutil.cpp 72 // Datasize
86 // Datasize
89 // Size of Datasize
99 // Datasize
102 // Size of Datasize
115 // Datasize
118 // Size of Datasize
131 // Datasize
134 // Size of Datasize
  /external/chromium_org/third_party/WebKit/public/platform/
WebCrypto.h 120 virtual bool consume(const unsigned char* data, unsigned dataSize) { return false; }
208 virtual void encrypt(const WebCryptoAlgorithm&, const WebCryptoKey&, const unsigned char* data, unsigned dataSize, WebCryptoResult result) { result.completeWithError(WebCryptoErrorTypeNotSupported, ""); }
209 virtual void decrypt(const WebCryptoAlgorithm&, const WebCryptoKey&, const unsigned char* data, unsigned dataSize, WebCryptoResult result) { result.completeWithError(WebCryptoErrorTypeNotSupported, ""); }
210 virtual void sign(const WebCryptoAlgorithm&, const WebCryptoKey&, const unsigned char* data, unsigned dataSize, WebCryptoResult result) { result.completeWithError(WebCryptoErrorTypeNotSupported, ""); }
211 virtual void verifySignature(const WebCryptoAlgorithm&, const WebCryptoKey&, const unsigned char* signature, unsigned signatureSize, const unsigned char* data, unsigned dataSize, WebCryptoResult result) { result.completeWithError(WebCryptoErrorTypeNotSupported, ""); }
212 virtual void digest(const WebCryptoAlgorithm&, const unsigned char* data, unsigned dataSize, WebCryptoResult result) { result.completeWithError(WebCryptoErrorTypeNotSupported, ""); }
  /external/chromium_org/third_party/skia/tests/
Writer32Test.cpp 147 const size_t dataSize = 10<<2;
148 SkASSERT(SkIsAlign4(dataSize));
150 SkAutoMalloc originalData(dataSize);
154 uint32_t* stop = ptr + (dataSize>>2);
161 for (size_t len = 0; len < dataSize; len++) {
174 for (size_t len = 0; len < dataSize; len++) {
  /external/deqp/execserver/
xsExecutionServer.cpp 260 void ExecutionRequestHandler::processMessage (MessageType type, const deUint8* data, int dataSize)
266 HelloMessage msg(data, dataSize);
275 TestMessage msg(data, dataSize);
282 KeepAliveMessage msg(data, dataSize);
290 ExecuteBinaryMessage msg(data, dataSize);
299 StopExecutionMessage msg(data, dataSize);
  /external/skia/tests/
Writer32Test.cpp 147 const size_t dataSize = 10<<2;
148 SkASSERT(SkIsAlign4(dataSize));
150 SkAutoMalloc originalData(dataSize);
154 uint32_t* stop = ptr + (dataSize>>2);
161 for (size_t len = 0; len < dataSize; len++) {
174 for (size_t len = 0; len < dataSize; len++) {
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
FFTFrame.h 78 void doPaddedFFT(const float* data, size_t dataSize); // zero-padding with dataSize <= fftSize
  /external/chromium_org/third_party/WebKit/Source/platform/network/
HTTPHeaderMap.cpp 59 size_t dataSize = data->size();
60 for (size_t index = 0; index < dataSize; ++index) {
  /external/kernel-headers/original/uapi/linux/
cycx_cfm.h 60 * @datasize - configuration data size
73 unsigned long datasize; member in struct:cycx_fw_info
  /external/llvm/lib/Target/R600/MCTargetDesc/
AMDGPUAsmBackend.cpp 47 void applyFixup(const MCFixup &Fixup, char *Data, unsigned DataSize,
73 unsigned DataSize, uint64_t Value,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
cycx_cfm.h 60 * @datasize - configuration data size
73 unsigned long datasize; member in struct:cycx_fw_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
cycx_cfm.h 60 * @datasize - configuration data size
73 unsigned long datasize; member in struct:cycx_fw_info
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
evntprov.h 178 ULONG DataSize)
181 EventDataDescriptor->Size = DataSize;

Completed in 721 milliseconds

1 2 3 45 6 7 8 91011>>