HomeSort by relevance Sort by last modified time
    Searched full:buffer (Results 201 - 225 of 7143) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/openssl/crypto/md4/
md4s.cpp 38 void md4_block_x86(MD4_CTX *ctx, unsigned char *buffer,int num);
43 unsigned char buffer[64*256]; local
65 md4_block_x86(&ctx,buffer,numm);
67 md4_block_x86(&ctx,buffer,numm);
70 md4_block_x86(&ctx,buffer,num);
72 md4_block_x86(&ctx,buffer,num);
  /external/openssl/crypto/md5/
md5s.cpp 38 void md5_block_x86(MD5_CTX *ctx, unsigned char *buffer,int num);
43 unsigned char buffer[64*256]; local
65 md5_block_x86(&ctx,buffer,numm);
67 md5_block_x86(&ctx,buffer,numm);
70 md5_block_x86(&ctx,buffer,num);
72 md5_block_x86(&ctx,buffer,num);
  /external/openssl/crypto/ripemd/asm/
rips.cpp 40 void ripemd160_block_x86(RIPEMD160_CTX *ctx, unsigned char *buffer,int num);
45 unsigned char buffer[64*256]; local
69 ripemd160_block_x86(&ctx,buffer,numm);
71 ripemd160_block_x86(&ctx,buffer,numm);
74 ripemd160_block_x86(&ctx,buffer,num);
76 ripemd160_block_x86(&ctx,buffer,num);
  /external/openssl/crypto/sha/
sha1s.cpp 39 void sha1_block_x86(SHA_CTX *ctx, unsigned char *buffer,int num);
44 unsigned char buffer[64*256]; local
68 sha1_block_x86(&ctx,buffer,numm);
70 sha1_block_x86(&ctx,buffer,numm);
73 sha1_block_x86(&ctx,buffer,num);
75 sha1_block_x86(&ctx,buffer,num);
  /external/oprofile/daemon/
opd_trans.h 3 * Processing the sample buffer
34 * Transient values used for parsing the event buffer.
35 * Note that these are reset for each buffer read, but
37 * ensures that a correct context starts off the buffer.
40 char const * buffer; member in struct:transient
78 void opd_process_samples(char const * buffer, size_t count);
  /external/qemu/docs/
AUDIO.TXT 36 - A fixed-size circular buffer of stereo samples (for stereo).
40 - A 'samples' field giving the (constant) number of sample pairs in the stereo buffer.
43 buffer and write into a platform-specific sound buffers (e.g. WinWave-managed buffers
46 - A 'rpos' offset into the circular buffer which tells where to read the next samples
47 from the stereo buffer for the next conversion through 'clip'.
63 send samples from the stereo buffer to the host sound card/server. This method
67 - A 'write' method callback used to write a buffer of emulated sound samples from
68 a SWVoiceOut into the stereo buffer. Currently all backends simply call the generic
79 copy/mix them to the corresponding HWVoiceOut's stereo buffer.
82 already been mixed into the target HWVoiceOut stereo buffer (starting from th
    [all...]
  /frameworks/base/libs/audioflinger/
AudioHardwareStub.cpp 102 char buffer[SIZE]; local
105 snprintf(buffer, SIZE, "\tmMicMute: %s\n", mMicMute? "true": "false");
106 result.append(buffer);
128 ssize_t AudioStreamOutStub::write(const void* buffer, size_t bytes)
143 char buffer[SIZE]; local
145 snprintf(buffer, SIZE, "AudioStreamOutStub::dump\n");
146 snprintf(buffer, SIZE, "\tsample rate: %d\n", sampleRate());
147 snprintf(buffer, SIZE, "\tbuffer size: %d\n", bufferSize());
148 snprintf(buffer, SIZE, "\tchannels: %d\n", channels());
149 snprintf(buffer, SIZE, "\tformat: %d\n", format())
185 char buffer[SIZE]; local
    [all...]
  /frameworks/base/media/libstagefright/omx/tests/
OMXHarness.h 36 struct Buffer {
51 Vector<Buffer> *inputBuffers,
52 Vector<Buffer> *outputBuffers,
62 Vector<Buffer> *buffers);
96 Vector<Buffer> *inputBuffers,
97 Vector<Buffer> *outputBuffers);
  /dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
HandshakeIODataStream.java 58 * or incompleate filling of destination buffer)
85 // buffer is used to keep the handshaking data;
88 private byte[] buffer = new byte[buff_size]; field in class:HandshakeIODataStream
126 * to delete one message from the internal buffer.
129 System.arraycopy(buffer, read_pos,
130 buffer, marked_pos, read_pos_end - read_pos);
146 return buffer[read_pos++] & 0xFF;
160 System.arraycopy(buffer, read_pos, res, 0, length);
170 System.arraycopy(buffer, read_pos, dest, offset, length);
179 * The attempts to overflow the buffer by means of this method
    [all...]
  /dalvik/libcore/luni/src/main/java/java/io/
FilterOutputStream.java 92 * Writes the entire contents of the byte array {@code buffer} to this
93 * stream. This implementation writes the {@code buffer} to the target
96 * @param buffer
97 * the buffer to be written.
102 public void write(byte[] buffer) throws IOException {
106 write(buffer, 0, buffer.length);
110 * Writes {@code count} bytes from the byte array {@code buffer} starting at
113 * @param buffer
114 * the buffer to write
    [all...]
  /external/icu4c/io/
sprintf.c 101 u_sprintf(UChar *buffer,
109 written = u_vsnprintf(buffer, INT32_MAX, patternSpecification, ap);
116 u_sprintf_u(UChar *buffer,
124 written = u_vsnprintf_u(buffer, INT32_MAX, patternSpecification, ap);
131 u_vsprintf(UChar *buffer,
135 return u_vsnprintf(buffer, INT32_MAX, patternSpecification, ap);
139 u_snprintf(UChar *buffer,
148 written = u_vsnprintf(buffer, count, patternSpecification, ap);
155 u_snprintf_u(UChar *buffer,
164 written = u_vsnprintf_u(buffer, count, patternSpecification, ap)
    [all...]
  /external/jpeg/
jdatadst.c 29 JOCTET * buffer; /* start of buffer */ member in struct:__anon2717
47 /* Allocate the output buffer --- it will be released when done with image */
48 dest->buffer = (JOCTET *)
52 dest->pub.next_output_byte = dest->buffer;
58 * Empty the output buffer --- called whenever buffer fills up.
60 * In typical applications, this should write the entire output buffer
62 * reset the pointer & count to the start of the buffer, and return TRUE
63 * indicating that the buffer has been dumped
    [all...]
  /frameworks/base/media/tests/omxjpegdecoder/
omx_jpeg_decoder.cpp 41 static void getJpegOutput(MediaBuffer* buffer, const char* filename) {
42 int size = buffer->range_length();
43 int offset = buffer->range_offset();
49 char* data = (char*) buffer->data();
148 MediaBuffer *buffer; local
151 status_t err = decoder->read(&buffer, NULL);
155 CHECK_EQ(buffer, NULL);
160 /* Mark the code for now, since we attend to copy buffer to SkBitmap.
162 installPixelRef(buffer, decoder, bm);*/
164 // Copy pixels from buffer to bm
    [all...]
  /system/core/nexus/
Property.cpp 50 int StringProperty::get(int idx, int *buffer) {
55 int StringProperty::get(int idx, struct in_addr *buffer) {
62 char *buffer, size_t max) :
64 mBuffer = buffer;
78 int StringPropertyHelper::get(int idx, char *buffer, size_t max) {
84 strncpy(buffer, mBuffer, max);
102 int IntegerProperty::get(int idx, char *buffer, size_t max) {
107 int IntegerProperty::get(int idx, struct in_addr *buffer) {
114 int *buffer) :
116 mBuffer = buffer;
    [all...]
  /cts/tools/dex-tools/src/dex/reader/
DexFieldImpl.java 31 private DexBuffer buffer; field in class:DexFieldImpl
42 public DexFieldImpl(DexBuffer buffer, DexClass declaringClass,
46 this.buffer = buffer;
60 buffer.setPosition(fieldAnnotation.annotationsOff);
61 final int size = buffer.readUInt();
63 annotations.add(new DexAnnotationImpl(buffer.createCopy(),
64 buffer.readUInt(), typeIds, stringPool, fieldIdItems));
  /external/clearsilver/man/man3/
cgiwrap_read.3 25 buf - a pre-allocated buffer to read the data into
27 buf_len - the size of the pre-allocated buffer
  /external/kernel-headers/original/asm-arm/
scatterlist.h 8 struct page *page; /* buffer page */
9 unsigned int offset; /* buffer offset */
  /external/skia/src/core/
SkColorFilter.cpp 38 SkFilterShader::SkFilterShader(SkFlattenableReadBuffer& buffer) :
39 INHERITED(buffer)
41 fShader = static_cast<SkShader*>(buffer.readFlattenable());
42 fFilter = static_cast<SkColorFilter*>(buffer.readFlattenable());
63 void SkFilterShader::flatten(SkFlattenableWriteBuffer& buffer)
65 this->INHERITED::flatten(buffer);
66 buffer.writeFlattenable(fShader);
67 buffer.writeFlattenable(fFilter);
SkStream.cpp 229 size_t SkFILEStream::read(void* buffer, size_t size)
233 if (buffer == NULL && size == 0) // special signature, they want the total size
236 return sk_fread(buffer, size, fFILE);
298 size_t SkMemoryStream::read(void* buffer, size_t size)
300 if (buffer == NULL && size == 0) // special signature, they want the total size
303 // if buffer is NULL, seek ahead by size
309 if (buffer) {
310 memcpy(buffer, (const char*)fSrc + fOffset, size);
344 SkBufferStream::SkBufferStream(SkStream* proxy, void* buffer, size_t bufferSize)
348 SkASSERT(buffer == NULL || bufferSize != 0); // init(addr, 0) makes no sense, we must know how big their buffer (…)
    [all...]
  /external/skia/src/effects/
SkDiscretePathEffect.cpp 88 SkFlattenable* SkDiscretePathEffect::CreateProc(SkFlattenableReadBuffer& buffer)
90 return SkNEW_ARGS(SkDiscretePathEffect, (buffer));
93 void SkDiscretePathEffect::flatten(SkFlattenableWriteBuffer& buffer)
95 buffer.writeScalar(fSegLength);
96 buffer.writeScalar(fPerterb);
99 SkDiscretePathEffect::SkDiscretePathEffect(SkFlattenableReadBuffer& buffer)
101 fSegLength = buffer.readScalar();
102 fPerterb = buffer.readScalar();
  /external/webkit/WebCore/platform/graphics/mac/
FontCustomPlatformData.cpp 43 FontCustomPlatformData* createFontCustomPlatformData(SharedBuffer* buffer)
45 ASSERT_ARG(buffer, buffer);
48 OpenTypeSanitizer sanitizer(buffer);
52 buffer = transcodeBuffer.get();
61 RetainPtr<CFDataRef> bufferData(AdoptCF, buffer->createCFData());
71 ATSFontActivateFromMemory((void*)buffer->data(), buffer->size(), 3, kATSFontFormatUnspecified, NULL, kATSOptionFlagsDefault, &containerRef);
  /external/webkit/WebCore/platform/graphics/wince/
GlyphPageTreeNodeWince.cpp 36 bool GlyphPage::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const SimpleFontData* fontData)
47 DWORD actualCodePages = getCharCodePages(buffer[i], lastPos);
49 setGlyphDataForIndex(offset + i, buffer[i], fontData);
51 setGlyphDataForIndex(offset + i, buffer[i], 0);
61 langFontLink->GetCharCodePages(buffer[i], &actualCodePages);
63 setGlyphDataForIndex(offset + i, buffer[i], fontData);
65 setGlyphDataForIndex(offset + i, buffer[i], 0);
73 setGlyphDataForIndex(offset + i, buffer[i], fontData);
  /external/webkit/WebCore/platform/mac/
KURLMac.mm 41 Vector<char, 512> buffer(bytesLength + 6); // 5 for "file:", 1 for null character to end C string
42 char* bytes = &buffer[5];
50 buffer[0] = 'f';
51 buffer[1] = 'i';
52 buffer[2] = 'l';
53 buffer[3] = 'e';
54 buffer[4] = ':';
56 parse(buffer.data(), 0);
  /system/core/adb/
test_track_devices.c 57 char buffer[1024]; local
71 len = snprintf( buffer, sizeof buffer, "%04x%s", strlen(request), request );
72 if (unix_write(s, buffer, len) < 0)
76 if (unix_read(s, buffer, 4) != 4)
79 printf( "server answer: %.*s\n", 4, buffer );
91 if (unix_read(s, buffer, len) != len)
94 printf( "received header %.*s (%d bytes):\n%.*s", 4, head, len, len, buffer );
test_track_jdwp.c 57 char buffer[1024]; local
71 len = snprintf( buffer, sizeof buffer, "%04x%s", strlen(request), request );
72 if (unix_write(s, buffer, len) < 0)
76 if (unix_read(s, buffer, 4) != 4)
79 printf( "server answer: %.*s\n", 4, buffer );
91 if (unix_read(s, buffer, len) != len)
94 printf( "received header %.*s (%d bytes):\n%.*s", 4, head, len, len, buffer );

Completed in 2038 milliseconds

1 2 3 4 5 6 7 891011>>