HomeSort by relevance Sort by last modified time
    Searched defs:buffer (Results 776 - 800 of 6723) sorted by null

<<31323334353637383940>>

  /external/libvpx/libvpx/vpx_dsp/
bitreader.c 21 int vpx_reader_init(vpx_reader *r, const uint8_t *buffer, size_t size,
23 if (size && !buffer) {
26 r->buffer_end = buffer + size;
27 r->buffer = buffer;
40 const uint8_t *buffer = r->buffer; local
41 const uint8_t *buffer_start = buffer;
44 const size_t bytes_left = buffer_end - buffer;
50 r->decrypt_cb(r->decrypt_state, buffer, r->clear_buffer, (int)n)
    [all...]
  /external/libxaac/decoder/drc_src/
impd_drc_peak_limiter.h 42 FLOAT32 *buffer; member in struct:ia_drc_peak_limiter_struct
48 UWORD32 sample_rate, FLOAT32 *buffer);
impd_drc_peak_limiter_struct.h 42 FLOAT32* buffer; member in struct:ia_drc_peak_limiter_struct
  /external/ltp/testcases/kernel/containers/netns/
netns_netlink.c 71 char buffer[4096]; local
98 nlh = (struct nlmsghdr *) buffer;
100 len = recv(fd, nlh, sizeof(buffer), MSG_DONTWAIT);
  /external/ltp/testcases/kernel/fs/doio/
datapid.c 84 int datapidgen(int pid, char *buffer, int bsize, int offset)
94 int boff; /* buffer offset or index */
119 buffer[boff] = *chr;
139 buffer[boff++] = *chr;
142 wptr = (long *)&buffer[boff];
150 * partial word at end of buffer
164 buffer[boff++] = *chr;
181 int datapidchk(int pid, char *buffer, int bsize, int offset, char **errmsg)
191 int boff; /* buffer offset or index */
214 if (buffer[boff] != *chr)
307 char *buffer; local
344 datapidgen(getpid(), buffer, size, 5); local
    [all...]
  /external/ltp/testcases/kernel/security/tomoyo/
tomoyo_new_file_test.c 93 const char buffer[] = "32768 61000"; local
134 show_result(write_sysctl(TEST_SYSCTL_PATH, buffer), 1);
136 show_result(write_sysctl(TEST_SYSCTL_PATH, buffer), 0);
141 write_sysctl(TEST_SYSCTL_PATH, buffer), 1);
144 write_sysctl(TEST_SYSCTL_PATH, buffer), 0);
tomoyo_policy_memory_test.c 54 char buffer[8192]; local
56 memset(buffer, 0, sizeof(buffer));
59 while (fgets(buffer, sizeof(buffer) - 1, fp)) {
60 char *cp = strchr(buffer, '\n');
63 if (strcmp(buffer, policy))
  /external/ltp/testcases/kernel/syscalls/tee/
tee01.c 46 static char buffer[TEST_BLOCK_SIZE]; variable
57 if (buffer[i] != teebuffer[i])
62 tst_res(TFAIL, "Wrong data read from the buffer at %i", i);
114 buffer[i] = i & 0xff;
117 SAFE_WRITE(1, fd_in, buffer, TEST_BLOCK_SIZE);
  /external/ltp/testcases/kernel/syscalls/vmsplice/
vmsplice01.c 46 static char buffer[TEST_BLOCK_SIZE]; variable
57 if (buffer[i] != vmsplicebuffer[i])
62 tst_res(TFAIL, "Wrong data read from the buffer at %i", i);
78 v.iov_base = buffer;
131 buffer[i] = i & 0xff;
vmsplice02.c 49 static char buffer[TEST_BLOCK_SIZE]; variable
77 ivc.iov_base = buffer;
  /external/mesa3d/src/gallium/auxiliary/pipebuffer/
pb_cache.h 37 * Statically inserted into the driver-specific buffer structure.
42 struct pb_buffer *buffer; /**< Pointer to the structure this is part of. */ member in struct:pb_cache_entry
51 * The driver controls which buffer goes into which bucket.
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_context.c 75 static char buffer[128]; local
85 offset = driGetRendererString( buffer, "R200", agp_mode );
87 sprintf( & buffer[ offset ], " %sTCL",
91 return (GLubyte *)buffer;
  /external/mesa3d/src/mesa/state_tracker/
st_pbo.h 46 /* Buffer and view. */
47 struct pipe_resource *buffer; /* non-owning pointer */ member in struct:st_pbo_addresses
51 /* Constant buffer for the fragment shader. */
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/
PasvCommandHandler.java 80 StringBuffer buffer = new StringBuffer(); local
84 buffer.append(positiveValue);
85 buffer.append(",");
89 buffer.append(String.valueOf(p1));
90 buffer.append(",");
91 buffer.append(String.valueOf(p2));
92 return buffer.toString();
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
TrackReferenceTypeBox.java 65 StringBuilder buffer = new StringBuilder(); local
66 buffer.append("TrackReferenceTypeBox[type=").append(getType());
68 buffer.append(";trackId");
69 buffer.append(i);
70 buffer.append("=");
71 buffer.append(trackIds[i]);
73 buffer.append("]");
74 return buffer.toString();
  /external/nanopb-c/tests/decode_unittests/
decode_unittests.c 60 uint8_t buffer[20]; local
64 TEST(pb_read(&stream, buffer, 5))
65 TEST(memcmp(buffer, "xxxxx", 5) == 0)
66 TEST(!pb_read(&stream, buffer, 50))
68 TEST(!pb_read(&stream, buffer, 5))
70 TEST(pb_read(&stream, buffer, 15))
  /external/nist-sip/java/gov/nist/javax/sip/header/
SIPHeader.java 98 StringBuffer buffer = new StringBuffer(encodedHdr); local
99 while (buffer.length() > 0 && buffer.charAt(0) != ':') {
100 buffer.deleteCharAt(0);
102 if (buffer.length() > 0)
103 buffer.deleteCharAt(0);
104 return buffer.toString().trim();
121 public StringBuffer encode(StringBuffer buffer) {
122 buffer.append(this.headerName).append(COLON).append(SP);
123 this.encodeBody(buffer);
    [all...]
  /external/nos/test/system-test-harness/tools/
nugget_tools.cc 66 std::vector<uint8_t> buffer; local
67 buffer.reserve(sizeof(uint32_t));
69 buffer, &buffer) != app_status::APP_SUCCESS) {
74 if (buffer.size() != sizeof(uint32_t)) {
78 *cycles = le32toh(*reinterpret_cast<uint32_t *>(buffer.data()));
101 std::vector<uint8_t> buffer; local
104 buffer.reserve(sizeof(struct nugget_app_low_power_stats));
106 buffer, &buffer) != app_status::APP_SUCCESS)
157 std::vector<uint8_t> buffer; local
204 std::vector<uint8_t> buffer; local
    [all...]
  /external/okhttp/okcurl/src/test/java/com/squareup/okhttp/curl/
MainTest.java 21 import okio.Buffer;
95 Buffer buffer = new Buffer(); local
96 body.writeTo(buffer);
97 return buffer.readString(body.contentType().charset());
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
ResponseBody.java 25 import okio.Buffer;
51 throw new IOException("Cannot buffer entire body for content length: " + contentLength);
108 Buffer buffer = new Buffer().writeString(content, charset); local
109 return create(contentType, buffer.size(), buffer);
114 Buffer buffer = new Buffer().write(content) local
    [all...]
  /external/okhttp/okio/okio/src/main/java/okio/
BufferedSink.java 23 * A sink that keeps a buffer internally so that callers can do small writes
27 /** Returns this sink's internal buffer. */
28 Buffer buffer(); method in interface:BufferedSink
104 * weaker. Use this to limit the memory held in the buffer to a single segment.
Okio.java 42 * source will perform bulk reads into its in-memory buffer. Use this wherever
45 public static BufferedSource buffer(Source source) { method in class:Okio
55 public static BufferedSink buffer(Sink sink) { method in class:Okio
70 @Override public void write(Buffer source, long byteCount) throws IOException {
129 @Override public long read(Buffer sink, long byteCount) throws IOException {
  /external/pdfium/core/fxcrt/xml/
cfx_xmlelement.cpp 83 CFX_WideTextBuf buffer; local
89 buffer << static_cast<CFX_XMLText*>(pChild)->GetText();
96 return buffer.MakeString();
  /external/proguard/src/proguard/
GPL.java 106 StringBuffer buffer = new StringBuffer(); local
114 buffer.append(packageName).append(", ");
118 return buffer.toString();
  /external/proguard/src/proguard/classfile/attribute/preverification/
MoreZeroFrame.java 148 StringBuffer buffer = new StringBuffer(super.toString()).append("Var: ..."); local
152 buffer = buffer.append('[')
157 buffer.append(", Stack: (empty)");
159 return buffer.toString();

Completed in 1411 milliseconds

<<31323334353637383940>>