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

<<51525354555657585960>>

  /external/libvpx/libvpx/
ivfdec.c 72 int ivf_read_frame(FILE *infile, uint8_t **buffer,
89 uint8_t *new_buffer = realloc(*buffer, 2 * frame_size);
92 *buffer = new_buffer;
95 warn("Failed to allocate compressed data buffer\n");
102 if (fread(*buffer, 1, frame_size, infile) != frame_size) {
video_reader.c 24 uint8_t *buffer; member in struct:VpxVideoReaderStruct
62 free(reader->buffer);
68 return !ivf_read_frame(reader->file, &reader->buffer, &reader->frame_size,
77 return reader->buffer;
video_writer.h 40 const uint8_t *buffer, size_t size,
  /external/libvpx/libvpx/third_party/libwebm/
mkvreader.hpp 30 virtual int Read(long long position, long length, unsigned char* buffer);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/arch/x86/util/
header.c 23 get_cpuid(char *buffer, size_t sz)
51 nb = scnprintf(buffer, sz, "%s,%u,%u,%u$", vendor, family, model, step);
54 if (strchr(buffer, '$')) {
55 buffer[nb-1] = '\0';
  /external/lzma/C/
Sha256.h 17 Byte buffer[64]; member in struct:__anon30494
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_idct.h 102 /* init a buffer assosiated with agiven idct instance */
104 vl_idct_init_buffer(struct vl_idct *idct, struct vl_idct_buffer *buffer,
108 /* cleanup a buffer of an idct instance */
110 vl_idct_cleanup_buffer(struct vl_idct_buffer *buffer);
112 /* flush the buffer and start rendering, vertex buffers needs to be setup before calling this */
114 vl_idct_flush(struct vl_idct *idct, struct vl_idct_buffer *buffer, unsigned num_verts);
117 vl_idct_prepare_stage2(struct vl_idct *idct, struct vl_idct_buffer *buffer);
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_state_so.c 39 struct pipe_resource *buffer,
48 pipe_resource_reference(&t->target.buffer, buffer);
58 pipe_resource_reference(&target->buffer, NULL);
  /external/mesa3d/src/gallium/include/pipe/
p_video_decoder.h 116 * destroy this video buffer
118 void (*destroy)(struct pipe_video_buffer *buffer);
123 struct pipe_sampler_view **(*get_sampler_view_planes)(struct pipe_video_buffer *buffer);
128 struct pipe_sampler_view **(*get_sampler_view_components)(struct pipe_video_buffer *buffer);
133 struct pipe_surface **(*get_surfaces)(struct pipe_video_buffer *buffer);
  /external/mesa3d/src/mesa/state_tracker/
st_cb_bufferobjects.h 39 * State_tracker vertex/pixel buffer object, derived from Mesa's
45 struct pipe_resource *buffer; /* GPU storage */ member in struct:st_buffer_object
  /external/nanopb-c/examples/using_union_messages/
decode.c 59 /* Read the data into buffer */
60 uint8_t buffer[512]; local
61 size_t count = fread(buffer, 1, sizeof(buffer), stdin);
62 pb_istream_t stream = pb_istream_from_buffer(buffer, count);
encode.c 44 uint8_t buffer[512]; local
45 pb_ostream_t stream = pb_ostream_from_buffer(buffer, sizeof(buffer));
80 fwrite(buffer, 1, stream.bytes_written, stdout);
  /external/nanopb-c/tests/extensions/
decode_extensions.c 18 uint8_t buffer[1024]; local
30 count = fread(buffer, 1, sizeof(buffer), stdin);
31 stream = pb_istream_from_buffer(buffer, count);
  /external/nist-sip/java/gov/nist/core/
HostPort.java 75 public StringBuffer encode(StringBuffer buffer) {
76 host.encode(buffer);
78 buffer.append(COLON).append(port);
79 return buffer;
  /external/nist-sip/java/gov/nist/javax/sip/address/
UserInfo.java 109 public StringBuffer encode(StringBuffer buffer) {
111 buffer.append(user).append(COLON).append(password);
113 buffer.append(user);
115 return buffer;
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
ftapi.c 73 FT_Byte* buffer,
76 return FT_Stream_Read( stream, buffer, count );
83 FT_Byte* buffer,
86 return FT_Stream_ReadAt( stream, pos, buffer, count );
md5.h 37 unsigned char buffer[64]; member in struct:__anon32504
  /external/pixman/pixman/
pixman-android.h 27 void (*get_scanline)(android_simple_image* self, void** buffer, int line);
  /external/ppp/pppd/
md4.h 23 unsigned int buffer[4]; /* Holds 4-word result of MD computation */ member in struct:__anon32603
49 ** Prints message digest buffer MD as 32 hexadecimal digits.
50 ** Order is from low-order byte of buffer[0] to high-order byte
51 ** of buffer[3].
sha1.h 22 unsigned char buffer[64]; member in struct:__anon32607
  /external/ppp/pppd/plugins/pppoatm/
atmres.h 33 int ans_byaddr(char *buffer,int length,const struct sockaddr_atmsvc *addr,
  /external/ppp/pppd/plugins/radius/
clientid.c 36 char buffer[1024]; local
50 while (fgets(buffer, sizeof(buffer), mapfd) != NULL)
54 q = buffer;
  /external/protobuf/gtest/xcode/Samples/FrameworkSample/
widget.h 53 void GetCharPtrValue(char* buffer, size_t max_size) const;
  /external/qemu/hw/android/goldfish/
battery.c 95 // return current buffer status flags
228 char buffer[100]; local
232 snprintf(buffer, sizeof buffer, "AC: %s\r\n",
234 callback(data, buffer);
252 snprintf(buffer, sizeof buffer, "status: %s\r\n", value);
253 callback(data, buffer);
274 snprintf(buffer, sizeof buffer, "health: %s\r\n", value)
    [all...]
  /external/skia/include/animator/
SkAnimatorView.h 24 bool decodeMemory(const void* buffer, size_t size);

Completed in 2468 milliseconds

<<51525354555657585960>>