HomeSort by relevance Sort by last modified time
    Searched full:bytesize (Results 26 - 50 of 240) sorted by null

12 3 4 5 6 7 8 910

  /prebuilts/ndk/current/platforms/android-18/arch-mips/usr/include/
malloc.h 35 extern void* memalign(size_t alignment, size_t bytesize);
38 extern void* valloc(size_t bytesize);
39 extern void* pvalloc(size_t bytesize);
  /prebuilts/ndk/current/platforms/android-18/arch-x86/usr/include/
malloc.h 35 extern void* memalign(size_t alignment, size_t bytesize);
38 extern void* valloc(size_t bytesize);
39 extern void* pvalloc(size_t bytesize);
  /prebuilts/ndk/current/platforms/android-19/arch-arm/usr/include/
malloc.h 35 extern void* memalign(size_t alignment, size_t bytesize);
38 extern void* valloc(size_t bytesize);
39 extern void* pvalloc(size_t bytesize);
  /prebuilts/ndk/current/platforms/android-19/arch-mips/usr/include/
malloc.h 35 extern void* memalign(size_t alignment, size_t bytesize);
38 extern void* valloc(size_t bytesize);
39 extern void* pvalloc(size_t bytesize);
  /prebuilts/ndk/current/platforms/android-19/arch-x86/usr/include/
malloc.h 35 extern void* memalign(size_t alignment, size_t bytesize);
38 extern void* valloc(size_t bytesize);
39 extern void* pvalloc(size_t bytesize);
  /prebuilts/ndk/current/platforms/android-3/arch-arm/usr/include/
malloc.h 35 extern void* memalign(size_t alignment, size_t bytesize);
38 extern void* valloc(size_t bytesize);
39 extern void* pvalloc(size_t bytesize);
  /prebuilts/ndk/current/platforms/android-4/arch-arm/usr/include/
malloc.h 35 extern void* memalign(size_t alignment, size_t bytesize);
38 extern void* valloc(size_t bytesize);
39 extern void* pvalloc(size_t bytesize);
  /prebuilts/ndk/current/platforms/android-5/arch-arm/usr/include/
malloc.h 35 extern void* memalign(size_t alignment, size_t bytesize);
38 extern void* valloc(size_t bytesize);
39 extern void* pvalloc(size_t bytesize);
  /prebuilts/ndk/current/platforms/android-8/arch-arm/usr/include/
malloc.h 35 extern void* memalign(size_t alignment, size_t bytesize);
38 extern void* valloc(size_t bytesize);
39 extern void* pvalloc(size_t bytesize);
  /prebuilts/ndk/current/platforms/android-9/arch-arm/usr/include/
malloc.h 35 extern void* memalign(size_t alignment, size_t bytesize);
38 extern void* valloc(size_t bytesize);
39 extern void* pvalloc(size_t bytesize);
  /prebuilts/ndk/current/platforms/android-9/arch-mips/usr/include/
malloc.h 35 extern void* memalign(size_t alignment, size_t bytesize);
38 extern void* valloc(size_t bytesize);
39 extern void* pvalloc(size_t bytesize);
  /prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/
malloc.h 35 extern void* memalign(size_t alignment, size_t bytesize);
38 extern void* valloc(size_t bytesize);
39 extern void* pvalloc(size_t bytesize);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
OpenSSLDigest.java 31 private final int byteSize;
33 public OpenSSLDigest(String algorithm, int byteSize) {
36 this.byteSize = byteSize;
51 return byteSize;
  /external/skia/src/animator/
SkMemberInfo.cpp 25 size_t byteSize;
28 byteSize = sizeof(SkColor);
49 byteSize = sizeof(int);
55 byteSize = sizeof(void*);
58 byteSize = sizeof(SkMSec);
61 byteSize = sizeof(SkPoint);
64 byteSize = sizeof(Sk3D_Point);
67 byteSize = sizeof(int32_t);
70 byteSize = sizeof(SkScalar);
74 byteSize = sizeof(SkString); // assume we'll copy by reference, not valu
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
AllocationByteBufferTest.java 48 void testByteBufferHelper(DataType dt, int byteSize, int dimX, int dimY) {
53 byte[] data = new byte[dimX * dimY * vecWidth * byteSize];
64 byte byteInData = data[(posY * dimX + posX) * vecWidth * byteSize];
65 byte byteInBuffer = bb.get(posY * stride + posX * vecWidth * byteSize);
71 void testByteBufferHelper1D(DataType dt, int byteSize) {
74 testByteBufferHelper(dt, byteSize, dimX, 1);
77 void testByteBufferHelper2D(DataType dt, int byteSize) {
81 testByteBufferHelper(dt, byteSize, dimX, dimY);
  /frameworks/opt/bitmap/src/com/android/bitmap/util/
Exif.java 35 * @param byteSize Recommended parameter declaring the length of the input stream. If you
39 public static int getOrientation(final InputStream inputStream, final long byteSize) {
59 Note: If you do not pass in byteSize parameter, a single large allocation will occur.
62 has(jpeg, byteSize, offset + length - 1)
76 if (has(jpeg, byteSize, 1)) {
86 while (has(jpeg, byteSize, offset + 3) && (jpeg.get(offset++) & 0xFF) == 0xFF) {
108 if (length < 2 || !has(jpeg, byteSize, offset + length - 1)) {
203 private static boolean has(final InputStreamBuffer jpeg, final long byteSize, final int index) {
204 if (byteSize >= 0) {
205 return index < byteSize;
    [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/util/
Exif.java 30 * @param byteSize Recommended parameter declaring the length of the input stream. If you
34 public static int getOrientation(final InputStream inputStream, final long byteSize) {
54 Note: If you do not pass in byteSize parameter, a single large allocation will occur.
57 has(jpeg, byteSize, offset + length - 1)
71 if (has(jpeg, byteSize, 1)) {
81 while (has(jpeg, byteSize, offset + 3) && (jpeg.get(offset++) & 0xFF) == 0xFF) {
103 if (length < 2 || !has(jpeg, byteSize, offset + length - 1)) {
198 private static boolean has(final InputStreamBuffer jpeg, final long byteSize, final int index) {
199 if (byteSize >= 0) {
200 return index < byteSize;
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/
sermsdos.py 73 bytesize: number of databits
84 bytesize = EIGHTBITS,
101 self.bytesize = str(bytesize)
119 self.bytesize, self.stop, self.retry, self.filename)
137 self.parity, self.bytesize, self.stop, self.retry,
195 , self.baud, self.parity, self.bytesize, self.stop,
  /external/protobuf/src/google/protobuf/
wire_format_unittest.cc 215 TEST(WireFormatTest, ByteSize) {
219 EXPECT_EQ(message.ByteSize(), WireFormat::ByteSize(message));
221 EXPECT_EQ(0, message.ByteSize());
222 EXPECT_EQ(0, WireFormat::ByteSize(message));
229 EXPECT_EQ(message.ByteSize(),
230 WireFormat::ByteSize(message));
232 EXPECT_EQ(0, message.ByteSize());
233 EXPECT_EQ(0, WireFormat::ByteSize(message));
240 EXPECT_EQ(message.ByteSize(), WireFormat::ByteSize(message))
    [all...]
message_lite.cc 235 const int size = ByteSize(); // Force size to be cached.
240 ByteSizeConsistencyError(size, ByteSize(), end - buffer);
252 ByteSizeConsistencyError(size, ByteSize(),
279 int byte_size = ByteSize();
285 ByteSizeConsistencyError(byte_size, ByteSize(), end - start);
306 int byte_size = ByteSize();
311 ByteSizeConsistencyError(byte_size, ByteSize(), end - start);
message_lite.h 171 // are just simple wrappers around ByteSize() and SerializeWithCachedSizes().
212 // ByteSize() on all embedded messages. If a subclass does not override
214 virtual int ByteSize() const = 0;
217 // not have changed since the last call to ByteSize(); if it has, the results
224 // must point at a byte array of at least ByteSize() bytes.
227 // Returns the result of the last call to ByteSize(). An embedded message's
232 // ByteSize() does not automatically use the cached size when available
  /external/nanopb-c/generator/google/protobuf/internal/
wire_format.py 118 # The *ByteSize() functions below return the number of bytes required to
195 + message.ByteSize())
200 + _VarUInt64ByteSizeNoTag(message.ByteSize())
201 + message.ByteSize())
214 message_size = msg.ByteSize()
230 # Private helper function for the *ByteSize() functions above.
  /external/protobuf/python/google/protobuf/internal/
wire_format.py 118 # The *ByteSize() functions below return the number of bytes required to
195 + message.ByteSize())
200 + _VarUInt64ByteSizeNoTag(message.ByteSize())
201 + message.ByteSize())
214 message_size = msg.ByteSize()
230 # Private helper function for the *ByteSize() functions above.
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
message_lite.h 170 // are just simple wrappers around ByteSize() and SerializeWithCachedSizes().
211 // ByteSize() on all embedded messages. If a subclass does not override
213 virtual int ByteSize() const = 0;
216 // not have changed since the last call to ByteSize(); if it has, the results
223 // must point at a byte array of at least ByteSize() bytes.
226 // Returns the result of the last call to ByteSize(). An embedded message's
231 // ByteSize() does not automatically use the cached size when available
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
message_lite.h 170 // are just simple wrappers around ByteSize() and SerializeWithCachedSizes().
211 // ByteSize() on all embedded messages. If a subclass does not override
213 virtual int ByteSize() const = 0;
216 // not have changed since the last call to ByteSize(); if it has, the results
223 // must point at a byte array of at least ByteSize() bytes.
226 // Returns the result of the last call to ByteSize(). An embedded message's
231 // ByteSize() does not automatically use the cached size when available

Completed in 6456 milliseconds

12 3 4 5 6 7 8 910