Home
last modified time | relevance | path

Searched defs:bytes (Results 1 – 25 of 629) sorted by relevance

12345678910>>...26

/external/webkit/Source/JavaScriptCore/wtf/
DOSAllocatorSymbian.cpp45 static void* allocateCodeChunk(size_t bytes) in allocateCodeChunk()
88 void OSAllocator::releaseDecommitted(void* parkedBase, size_t bytes) in releaseDecommitted()
97 void OSAllocator::commit(void* address, size_t bytes, bool, bool executable) in commit()
105 void OSAllocator::decommit(void* address, size_t bytes) in decommit()
113 void* OSAllocator::reserveAndCommit(size_t bytes, Usage usage, bool writable, bool executable) in reserveAndCommit()
152 void* PageAllocatorSymbian::reserve(size_t bytes) in reserve()
169 void PageAllocatorSymbian::release(void* address, size_t bytes) in release()
178 bool PageAllocatorSymbian::commit(void* address, size_t bytes) in commit()
191 bool PageAllocatorSymbian::decommit(void* address, size_t bytes) in decommit()
DOSAllocatorPosix.cpp36 void* OSAllocator::reserveUncommitted(size_t bytes, Usage usage, bool writable, bool executable) in reserveUncommitted()
46 void* OSAllocator::reserveAndCommit(size_t bytes, Usage usage, bool writable, bool executable) in reserveAndCommit()
89 void OSAllocator::commit(void* address, size_t bytes, bool, bool) in commit()
100 void OSAllocator::decommit(void* address, size_t bytes) in decommit()
114 void OSAllocator::releaseDecommitted(void* address, size_t bytes) in releaseDecommitted()
DOSAllocatorWin.cpp41 void* OSAllocator::reserveUncommitted(size_t bytes, Usage, bool writable, bool executable) in reserveUncommitted()
49 void* OSAllocator::reserveAndCommit(size_t bytes, Usage, bool writable, bool executable) in reserveAndCommit()
57 void OSAllocator::commit(void* address, size_t bytes, bool writable, bool executable) in commit()
64 void OSAllocator::decommit(void* address, size_t bytes) in decommit()
71 void OSAllocator::releaseDecommitted(void* address, size_t bytes) in releaseDecommitted()
/external/webkit/Source/WebKit2/Shared/
DWebData.h43 …static PassRefPtr<WebData> createWithoutCopying(const unsigned char* bytes, size_t size, FreeDataF… in createWithoutCopying()
48 static PassRefPtr<WebData> create(const unsigned char* bytes, size_t size) in create()
70 const unsigned char* bytes() const { return m_bytes; } in bytes() function
74 …WebData(const unsigned char* bytes, size_t size, FreeDataFunction freeDataFunction, const void* co… in WebData()
82 static void fastFreeBytes(unsigned char* bytes, const void*) in fastFreeBytes()
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
DCMSProcessableByteArray.java19 private final byte[] bytes; field in CMSProcessableByteArray
22 byte[] bytes) in CMSProcessableByteArray()
29 byte[] bytes) in CMSProcessableByteArray()
/external/kernel-headers/original/asm-generic/
Dxor.h19 xor_8regs_2(unsigned long bytes, unsigned long *p1, unsigned long *p2) in xor_8regs_2()
38 xor_8regs_3(unsigned long bytes, unsigned long *p1, unsigned long *p2, in xor_8regs_3()
59 xor_8regs_4(unsigned long bytes, unsigned long *p1, unsigned long *p2, in xor_8regs_4()
81 xor_8regs_5(unsigned long bytes, unsigned long *p1, unsigned long *p2, in xor_8regs_5()
104 xor_32regs_2(unsigned long bytes, unsigned long *p1, unsigned long *p2) in xor_32regs_2()
140 xor_32regs_3(unsigned long bytes, unsigned long *p1, unsigned long *p2, in xor_32regs_3()
186 xor_32regs_4(unsigned long bytes, unsigned long *p1, unsigned long *p2, in xor_32regs_4()
241 xor_32regs_5(unsigned long bytes, unsigned long *p1, unsigned long *p2, in xor_32regs_5()
305 xor_8regs_p_2(unsigned long bytes, unsigned long *p1, unsigned long *p2) in xor_8regs_p_2()
331 xor_8regs_p_3(unsigned long bytes, unsigned long *p1, unsigned long *p2, in xor_8regs_p_3()
[all …]
/external/dexmaker/src/dx/java/com/android/dx/util/
DByteArrayByteInput.java21 private final byte[] bytes; field in ByteArrayByteInput
24 public ByteArrayByteInput(byte... bytes) { in ByteArrayByteInput()
DOutput.java95 public void write(ByteArray bytes); in write()
105 public void write(byte[] bytes, int offset, int length); in write()
113 public void write(byte[] bytes); in write()
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
DInternalNano.java72 public static final String stringDefaultValue(String bytes) { in stringDefaultValue()
91 public static final byte[] bytesDefaultValue(String bytes) { in bytesDefaultValue()
/external/openssl/crypto/rand/
Drand_egd.c99 int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes) in RAND_query_egd_bytes()
108 int RAND_egd_bytes(const char *path,int bytes) in RAND_egd_bytes()
136 int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes) in RAND_query_egd_bytes()
284 int RAND_egd_bytes(const char *path, int bytes) in RAND_egd_bytes()
/external/apache-http/src/org/apache/commons/codec/net/
DURLCodec.java111 public static final byte[] encodeUrl(BitSet urlsafe, byte[] bytes) in encodeUrl()
154 public static final byte[] decodeUrl(byte[] bytes) in decodeUrl()
191 public byte[] encode(byte[] bytes) { in encode()
205 public byte[] decode(byte[] bytes) throws DecoderException { in decode()
DQuotedPrintableCodec.java136 public static final byte[] encodeQuotedPrintable(BitSet printable, byte[] bytes) { in encodeQuotedPrintable()
173 public static final byte[] decodeQuotedPrintable(byte[] bytes) throws DecoderException { in decodeQuotedPrintable()
210 public byte[] encode(byte[] bytes) { in encode()
229 public byte[] decode(byte[] bytes) throws DecoderException { in decode()
/external/protobuf/java/src/main/java/com/google/protobuf/
DInternal.java72 public static String stringDefaultValue(String bytes) { in stringDefaultValue()
91 public static ByteString bytesDefaultValue(String bytes) { in bytesDefaultValue()
DByteString.java48 private final byte[] bytes; field in ByteString
50 private ByteString(final byte[] bytes) { in ByteString()
88 public static ByteString copyFrom(final byte[] bytes, final int offset, in copyFrom()
98 public static ByteString copyFrom(final byte[] bytes) { in copyFrom()
106 public static ByteString copyFrom(final ByteBuffer bytes, final int size) { in copyFrom()
116 public static ByteString copyFrom(final ByteBuffer bytes) { in copyFrom()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DASN1OutputStream.java52 void write(byte[] bytes) in write()
58 void write(byte[] bytes, int off, int len) in write()
66 byte[] bytes) in writeEncoded()
107 void writeEncoded(int flags, int tagNo, byte[] bytes) in writeEncoded()
/external/nist-sip/java/gov/nist/javax/sip/parser/
DPipeline.java87 byte[] bytes; field in Pipeline.Buffer
93 public Buffer(byte[] bytes, int length) { in Buffer()
131 public void write(byte[] bytes, int start, int length) throws IOException { in write()
142 public void write(byte[] bytes) throws IOException { in write()
/external/protobuf/java/src/main/java/com/google/protobuf/micro/
DByteStringMicro.java42 private final byte[] bytes; field in ByteStringMicro
44 private ByteStringMicro(final byte[] bytes) { in ByteStringMicro()
82 public static ByteStringMicro copyFrom(final byte[] bytes, final int offset, in copyFrom()
92 public static ByteStringMicro copyFrom(final byte[] bytes) { in copyFrom()
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
DByteArray.java35 private final byte[] bytes; field in ByteArray
52 public ByteArray(byte[] bytes, int start, int end) { in ByteArray()
79 public ByteArray(byte[] bytes) { in ByteArray()
115 public int underlyingOffset(int offset, byte[] bytes) { in underlyingOffset()
DNumberUtils.java98 public static short decodeShort(byte[] bytes, int index) { in decodeShort()
124 public static int decodeUnsignedShort(byte[] bytes, int index) { in decodeUnsignedShort()
152 public static int decodeInt(byte[] bytes, int index) { in decodeInt()
190 public static long decodeLong(byte[] bytes, int index) { in decodeLong()
DOutput.java107 public void write(ByteArray bytes); in write()
117 public void write(byte[] bytes, int offset, int length); in write()
125 public void write(byte[] bytes); in write()
DEncodedValueUtils.java49 public static long decodeSignedIntegralValue(byte[] bytes) { in decodeSignedIntegralValue()
86 public static long decodeUnsignedIntegralValue(byte[] bytes) { in decodeUnsignedIntegralValue()
121 public static long decodeRightZeroExtendedValue(byte[] bytes) { in decodeRightZeroExtendedValue()
/external/webkit/Source/WebCore/svg/
DSVGPathByteStream.h33 unsigned char bytes[sizeof(bool)]; member
38 unsigned char bytes[sizeof(float)]; member
43 unsigned char bytes[sizeof(unsigned short)]; member
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/
DByteBufferTest.java1204 assertTrue(Arrays.equals(char2bytes(value, buf.order()), bytes)); in testPutChar() local
1240 assertTrue(Arrays.equals(char2bytes(value, buf.order()), bytes)); in testPutCharint() local
1359 assertTrue(Arrays.equals(double2bytes(value, buf.order()), bytes)); in testPutDouble() local
1395 assertTrue(Arrays.equals(double2bytes(value, buf.order()), bytes)); in testPutDoubleint() local
1502 assertTrue(Arrays.equals(float2bytes(value, buf.order()), bytes)); in testPutFloat() local
1538 assertTrue(Arrays.equals(float2bytes(value, buf.order()), bytes)); in testPutFloatint() local
1644 assertTrue(Arrays.equals(int2bytes(value, buf.order()), bytes)); in testPutInt() local
1680 assertTrue(Arrays.equals(int2bytes(value, buf.order()), bytes)); in testPutIntint() local
1781 assertTrue(Arrays.equals(long2bytes(value, buf.order()), bytes)); in testPutLong() local
1817 assertTrue(Arrays.equals(long2bytes(value, buf.order()), bytes)); in testPutLongint() local
[all …]
/external/guava/guava/src/com/google/common/hash/
DHashCodes.java106 static HashCode fromBytes(byte[] bytes) { in fromBytes()
111 final byte[] bytes; field in HashCodes.BytesHashCode
113 BytesHashCode(byte[] bytes) { in BytesHashCode()
/external/skia/src/pipe/utils/
DSamplePipeControllers.cpp34 void PipeController::notifyWritten(size_t bytes) { in notifyWritten()
73 void TiledPipeController::notifyWritten(size_t bytes) { in notifyWritten()
102 void ThreadSafePipeController::notifyWritten(size_t bytes) { in notifyWritten()

12345678910>>...26