HomeSort by relevance Sort by last modified time
    Searched full:numbytes (Results 1 - 25 of 230) sorted by null

1 2 3 4 5 6 7 8 910

  /ndk/tests/device/test-stlport_shared-exception/jni/
delete3_1.cpp 20 void* operator new(size_t numBytes, SomeClass&, const std::nothrow_t&) throw()
22 return operator new(numBytes, std::nothrow);
  /ndk/tests/device/test-stlport_static-exception/jni/
delete3_1.cpp 20 void* operator new(size_t numBytes, SomeClass&, const std::nothrow_t&) throw()
22 return operator new(numBytes, std::nothrow);
  /frameworks/av/media/libstagefright/
VBRISeeker.cpp 106 uint32_t numBytes;
108 case 1: numBytes = buffer[i]; break;
109 case 2: numBytes = U16_AT(buffer + 2 * i); break;
110 case 3: numBytes = U24_AT(buffer + 3 * i); break;
114 numBytes = U32_AT(buffer + 4 * i); break;
118 numBytes *= scale;
120 seeker->mSegments.push(numBytes);
122 ALOGV("entry #%d: %d offset 0x%08lx", i, numBytes, offset);
123 offset += numBytes;
  /external/chromium_org/third_party/tlslite/tlslite/utils/
PyCrypto_RSAKey.py 30 byteLength = numBytes(self.n)
42 byteLength = numBytes(self.n)
57 def f(numBytes):
58 return bytesToString(getRandomBytes(numBytes))
  /external/pixman/pixman/
pixman-arm-simd-asm.S 47 * numbytes Number of output bytes that should be generated this time
58 .macro blit_process_head cond, numbytes, firstreg, unaligned_src, unaligned_mask, preload
59 pixld cond, numbytes, firstreg, SRC, unaligned_src
139 .macro fill_process_tail cond, numbytes, firstreg
144 pixst cond, numbytes, 4, DST
187 .macro pixman_composite_src_x888_8888_process_head cond, numbytes, firstreg, unaligned_src, unaligned_mask, preload
188 pixld cond, numbytes, firstreg, SRC, unaligned_src
191 .macro pixman_composite_src_x888_8888_process_tail cond, numbytes, firstreg
193 .if numbytes >= 8
195 .if numbytes == 1
    [all...]
  /external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
IsValidUtf8TestUtil.java 186 * @param numBytes the number of bytes in the byte array
189 static void testBytes(int numBytes, long expectedCount)
191 testBytes(numBytes, expectedCount, 0, -1);
199 * @param numBytes the number of bytes in the byte array
203 * or -1 to mean the max limit for numBytes
205 static void testBytes(int numBytes, long expectedCount, long start, long lim)
208 byte[] bytes = new byte[numBytes];
211 lim = 1L << (numBytes * 8);
217 for (int i = 0; i < numBytes; i++) {
233 assertEquals(isRoundTrippable, Utf8.isValidUtf8(bytes, 0, numBytes));
    [all...]
  /frameworks/rs/
rsStream.cpp 30 void IStream::loadByteArray(void *dest, size_t numBytes) {
31 memcpy(dest, mData + mPos, numBytes);
32 mPos += numBytes;
65 void OStream::addByteArray(const void *src, size_t numBytes) {
67 while (mPos + numBytes >= mLength) {
70 memcpy(mData + mPos, src, numBytes);
71 mPos += numBytes;
  /external/llvm/lib/Target/MSP430/
MSP430FrameLowering.cpp 54 uint64_t NumBytes = 0;
58 NumBytes = FrameSize - MSP430FI->getCalleeSavedFrameSize();
63 MFI->setOffsetAdjustment(-NumBytes);
79 NumBytes = StackSize - MSP430FI->getCalleeSavedFrameSize();
88 if (NumBytes) { // adjust stack pointer: SPW -= numbytes
91 //NumBytes -= mergeSPUpdates(MBB, MBBI, true);
94 // mergeSPUpdatesDown(MBB, MBBI, &NumBytes);
96 if (NumBytes) {
99 .addReg(MSP430::SPW).addImm(NumBytes);
    [all...]
  /external/llvm/lib/Target/ARM/
Thumb1FrameLowering.cpp 41 int NumBytes, unsigned MIFlags = MachineInstr::NoFlags) {
42 emitThumbRegPlusImmediate(MBB, MBBI, dl, ARM::SP, ARM::SP, NumBytes, TII,
93 unsigned NumBytes = MFI->getStackSize();
100 NumBytes = (NumBytes + 3) & ~3;
101 MFI->setStackSize(NumBytes);
113 if (NumBytes != 0)
114 emitSPUpdate(MBB, MBBI, TII, dl, *RegInfo, -NumBytes,
160 unsigned DPRCSOffset = NumBytes - (GPRCS1Size + GPRCS2Size + DPRCSSize);
166 NumBytes);
    [all...]
  /external/clang/test/SemaObjC/
objc-string-constant.m 19 int numBytes;
  /external/llvm/lib/Target/Sparc/
SparcFrameLowering.cpp 47 int NumBytes = (int) MFI->getStackSize();
52 if (NumBytes == 0)
57 NumBytes = - SubTarget.getAdjustedFrameSize(NumBytes);
59 if (NumBytes >= -4096) {
61 .addReg(SP::O6).addImm(NumBytes);
65 unsigned OffHi = (unsigned)NumBytes >> 10U;
69 .addReg(SP::G1).addImm(NumBytes & ((1 << 10)-1));
110 int NumBytes = (int) MFI->getStackSize();
111 if (NumBytes == 0
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/rand/
rand_egd.c 95 * RAND_egd() is a wrapper for RAND_egd_bytes() with numbytes=255.
140 int len, num, numbytes; local
191 numbytes = 0;
192 while (numbytes != 2)
194 num = write(fd, egdbuf + numbytes, 2 - numbytes);
196 numbytes += num;
215 numbytes = 0;
216 while (numbytes != 1)
222 numbytes += num
    [all...]
  /external/openssl/crypto/rand/
rand_egd.c 95 * RAND_egd() is a wrapper for RAND_egd_bytes() with numbytes=255.
140 int len, num, numbytes; local
191 numbytes = 0;
192 while (numbytes != 2)
194 num = write(fd, egdbuf + numbytes, 2 - numbytes);
196 numbytes += num;
215 numbytes = 0;
216 while (numbytes != 1)
222 numbytes += num
    [all...]
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
RandomImpl.java 46 protected byte[] engineGenerateSeed(int numBytes) {
48 byte[] b = new byte[numBytes];
  /libcore/crypto/src/main/java/org/conscrypt/
OpenSSLRandom.java 36 protected byte[] engineGenerateSeed(int numBytes) {
37 byte[] output = new byte[numBytes];
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
RandomImpl.java 47 protected byte[] engineGenerateSeed(int numBytes) {
49 byte[] b = new byte[numBytes];
  /packages/apps/Exchange/tests/src/com/android/exchange/utility/
SimpleIcsWriterTests.java 86 int numBytes = 0;
92 assertTrue("input=" + input, numBytes <= 75);
93 numBytes = 0;
96 numBytes++;
98 assertTrue("input=" + input, numBytes <= 75);
  /external/chromium_org/third_party/angle/src/compiler/
PoolAlloc.cpp 206 void* TPoolAllocator::allocate(size_t numBytes)
212 totalBytes += numBytes;
215 // them: [guardblock][allocation][guardblock]. numBytes is how
219 size_t allocationSize = TAllocation::allocationSize(numBytes);
221 if (allocationSize < numBytes)
236 return initializeAllocation(inUseList, memory, numBytes);
283 return initializeAllocation(inUseList, ret, numBytes);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
eval.c 556 GLsizei numBytes;
581 numBytes = n * sizeof *v;
582 if (bufSize < numBytes)
591 numBytes = 1 * sizeof *v;
592 if (bufSize < numBytes)
597 numBytes = 2 * sizeof *v;
598 if (bufSize < numBytes)
606 numBytes = 2 * sizeof *v;
607 if (bufSize < numBytes)
613 numBytes = 4 * sizeof *v
    [all...]
  /external/mesa3d/src/mesa/main/
eval.c 556 GLsizei numBytes;
581 numBytes = n * sizeof *v;
582 if (bufSize < numBytes)
591 numBytes = 1 * sizeof *v;
592 if (bufSize < numBytes)
597 numBytes = 2 * sizeof *v;
598 if (bufSize < numBytes)
606 numBytes = 2 * sizeof *v;
607 if (bufSize < numBytes)
613 numBytes = 4 * sizeof *v
    [all...]
  /frameworks/base/core/java/android/speech/srec/
WaveHeader.java 31 * <li> numBytes - size of audio data after this header, in bytes.
71 * @param numBytes size of audio data after this header, in bytes.
73 public WaveHeader(short format, short numChannels, int sampleRate, short bitsPerSample, int numBytes) {
78 mNumBytes = numBytes;
167 * @param numBytes size of audio data after this header, in bytes.
170 public WaveHeader setNumBytes(int numBytes) {
171 mNumBytes = numBytes;
184 int numBytes = readInt(in) - 36;
272 "WaveHeader format=%d numChannels=%d sampleRate=%d bitsPerSample=%d numBytes=%d",
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
IccServiceTable.java 57 int numBytes = mServiceTable.length;
59 .append(numBytes * 8).append("]={ ");
62 for (int i = 0; i < numBytes; i++) {
  /libcore/luni/src/main/java/java/security/
SecureRandomSpi.java 55 * @param numBytes
59 protected abstract byte[] engineGenerateSeed(int numBytes);
  /external/arduino/libraries/Wire/
Wire.cpp 182 // or after requestFrom(address, numBytes)
190 // or after requestFrom(address, numBytes)
207 void TwoWire::onReceiveService(uint8_t* inBytes, int numBytes)
221 for(uint8_t i = 0; i < numBytes; ++i){
226 rxBufferLength = numBytes;
228 user_onReceive(numBytes);
  /frameworks/base/media/tests/omxjpegdecoder/
omx_jpeg_decoder.cpp 54 int numBytes = numChars * sizeof(char);
55 size -= numBytes;
56 data += numBytes;
75 int numBytes = numChars * sizeof(char);
76 size -= numBytes;
77 data += numBytes;

Completed in 1701 milliseconds

1 2 3 4 5 6 7 8 910