HomeSort by relevance Sort by last modified time
    Searched refs:buffer (Results 176 - 200 of 13080) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
create_augmented_vec.h 31 int16_t *buffer, /* (i) Pointer to the end of the codebook memory that
  /external/chromium_org/ui/ozone/platform/dri/
buffer_data.h 16 // This class is used to tag a gbm buffer with custom information needed
20 // When we create the BufferData we need to register the buffer. Once
22 // buffer. The controller will use this ID when scanning out the buffer. On
23 // creation we will also associate the BufferData with the buffer.
24 static BufferData* CreateData(DriWrapper* dri, gbm_bo* buffer);
26 // Callback used by GBM to destroy the BufferData associated with a buffer.
27 static void Destroy(gbm_bo* buffer, void* data);
29 // Returns the BufferData associated with |buffer|. NULL if no data is
31 static BufferData* GetData(gbm_bo* buffer);
    [all...]
  /external/clang/test/PCH/
attrs-PR8406.c 14 int buffer[123] __attribute__((__aligned__(512))); member in struct:Bar
  /external/e2fsprogs/lib/ext2fs/
crc16.h 24 extern crc16_t ext2fs_crc16(crc16_t crc, const void *buffer, unsigned int len);
  /external/easymock/src/org/easymock/
IArgumentMatcher.java 40 * Appends a string representation of this matcher to the given buffer. In case
44 * @param buffer the buffer to which the string representation is appended.
46 void appendTo(StringBuffer buffer);
  /external/easymock/src/org/easymock/internal/matchers/
Not.java 36 public void appendTo(StringBuffer buffer) {
37 buffer.append("not(");
38 first.appendTo(buffer);
39 buffer.append(")");
  /external/icu/icu4c/source/samples/case/
ucase.c 29 UChar buffer[32]; local
48 /* result buffer = "ab?" latin small letter a, latin small letter b, latin
50 length = u_strToLower(buffer, sizeof(buffer)/sizeof(buffer[0]), upper,
52 if(U_FAILURE(errorCode) || buffer[length]!=0) {
57 u_fprintf(out, "u_strToLower(%S, turkish) -> %S\n", upper, buffer);
61 /* result buffer = "ABI" latin CAPITAL letter A, latin capital letter B,
63 length = u_strToUpper(buffer, sizeof(buffer)/sizeof(buffer[0]), upper,
    [all...]
  /external/nanopb-c/examples/using_double_on_avr/
decode_double.c 12 uint8_t buffer[32]; local
13 size_t count = fread(buffer, 1, sizeof(buffer), stdin);
14 pb_istream_t stream = pb_istream_from_buffer(buffer, count);
  /external/nanopb-c/tests/basic_buffer/
encode_buffer.c 3 * buffer, which is then written to stdout.
13 uint8_t buffer[Person_size]; local
23 stream = pb_ostream_from_buffer(buffer, sizeof(buffer));
30 fwrite(buffer, 1, stream.bytes_written, stdout);
  /external/protobuf/src/google/protobuf/io/
coded_stream_inl.h 47 inline bool CodedInputStream::InternalReadStringInline(string* buffer,
52 STLStringResizeUninitialized(buffer, size);
53 memcpy(string_as_array(buffer), buffer_, size);
58 return ReadStringFallback(buffer, size);
  /external/qemu/android/utils/
timezone.h 24 /* append the current host "zoneinfo" timezone name to a given buffer. note
33 extern char* bufprint_zoneinfo_timezone( char* buffer, char* end );
  /external/qemu/distrib/sdl-1.2.15/src/video/nds/
SDL_ndsvideo.h 38 void *buffer; member in struct:SDL_PrivateVideoData
  /external/skia/src/ports/
SkDebug_nacl.cpp 29 char buffer[kBufferSize + 1]; local
32 sprintf(buffer, kLogPrefix);
33 vsnprintf(buffer + strlen(kLogPrefix), kBufferSize, format, args);
35 pp::Var msg = pp::Var(buffer);
  /external/skia/tools/
LazyDecodeBitmap.h 20 bool LazyDecodeBitmap(const void* buffer, size_t size, SkBitmap* bitmap);
  /external/valgrind/main/none/tests/s390x/
ex.c 3 char buffer[] ="0123456789abcdef"; variable
10 printf("------- Copy 10+1 bytes from buffer to target\n");
12 printf("before: buffer = |%s|\n", buffer);
21 : : "a" (target), "a" (buffer): "1", "2", "memory");
22 printf("after: buffer = |%s|\n", buffer);
exrl.c 3 char buffer[] ="0123456789abcdef"; variable
10 printf("------- Copy 10+1 bytes from buffer to target\n");
12 printf("before: buffer = |%s|\n", buffer);
20 : : "a" (target), "a" (buffer) : "1", "2", "memory");
21 printf("after: buffer = |%s|\n", buffer);
  /external/chromium_org/courgette/
crc.cc 19 uint32 CalculateCrc(const uint8* buffer, size_t size) {
24 crc = crc32(0, buffer, size);
28 crc = CrcCalc(buffer, size);
  /external/chromium_org/third_party/WebKit/Source/wtf/
StringExtras.h 50 inline int snprintf(char* buffer, size_t count, const char* format, ...)
55 result = _vsnprintf(buffer, count, format, args);
58 // In the case where the string entirely filled the buffer, _vsnprintf will not
61 buffer[count - 1] = '\0';
66 inline double wtf_vsnprintf(char* buffer, size_t count, const char* format, va_list args)
68 int result = _vsnprintf(buffer, count, format, args);
70 // In the case where the string entirely filled the buffer, _vsnprintf will not
73 buffer[count - 1] = '\0';
79 // vsnprintf does not null terminate the buffer. WebKit can rely on the null termination.
80 #define vsnprintf(buffer, count, format, args) wtf_vsnprintf(buffer, count, format, args
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-shape-fallback-private.hh 37 hb_buffer_t *buffer);
41 hb_buffer_t *buffer);
46 hb_buffer_t *buffer);
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
output_stream.h 32 virtual void Write(ByteVector* buffer) = 0;
38 virtual void Write(ByteVector* buffer, int32_t offset, int32_t length) = 0;
40 // Note: Caller is responsible for the boundary of buffer.
41 virtual void Write(byte_t* buffer, int32_t offset, int32_t length) = 0;
  /external/harfbuzz_ng/src/
hb-ot-shape-fallback-private.hh 37 hb_buffer_t *buffer);
41 hb_buffer_t *buffer);
46 hb_buffer_t *buffer);
  /external/qemu/distrib/sdl-1.2.15/src/audio/macosx/
SDL_coreaudio.h 35 void *buffer; member in struct:SDL_PrivateAudioData
42 #define buffer (this->hidden->buffer) macro
  /external/sfntly/cpp/src/sfntly/port/
output_stream.h 32 virtual void Write(ByteVector* buffer) = 0;
38 virtual void Write(ByteVector* buffer, int32_t offset, int32_t length) = 0;
40 // Note: Caller is responsible for the boundary of buffer.
41 virtual void Write(byte_t* buffer, int32_t offset, int32_t length) = 0;
  /external/vixl/test/
test-fuzz-a64.cc 48 Instruction buffer[kInstructionSize]; local
52 buffer->SetInstructionBits(instr);
53 decoder.Decode(buffer);
67 Instruction buffer[kInstructionSize]; local
72 buffer->SetInstructionBits(instr);
73 decoder.Decode(buffer);
90 Instruction buffer[kInstructionSize];
96 buffer->SetInstructionBits(static_cast<uint32_t>(i));
97 decoder.Decode(buffer);
106 Instruction buffer[kInstructionSize]
    [all...]
  /external/apache-http/src/org/apache/http/message/
BasicLineParser.java 120 CharArrayBuffer buffer = new CharArrayBuffer(value.length()); local
121 buffer.append(value);
123 return parser.parseProtocolVersion(buffer, cursor);
128 public ProtocolVersion parseProtocolVersion(final CharArrayBuffer buffer,
132 if (buffer == null) {
133 throw new IllegalArgumentException("Char array buffer may not be null");
145 skipWhitespace(buffer, cursor);
153 buffer.substring(indexFrom, indexTo));
159 ok = (buffer.charAt(i+j) == protoname.charAt(j));
162 ok = (buffer.charAt(i+protolength) == '/')
285 CharArrayBuffer buffer = new CharArrayBuffer(value.length()); local
385 CharArrayBuffer buffer = new CharArrayBuffer(value.length()); local
476 CharArrayBuffer buffer = new CharArrayBuffer(value.length()); local
    [all...]

Completed in 2493 milliseconds

1 2 3 4 5 6 78 91011>>