HomeSort by relevance Sort by last modified time
    Searched defs:buf_length (Results 1 - 6 of 6) sorted by null

  /external/apache-xml/src/main/java/org/apache/xml/serializer/
SerializerTraceWriter.java 60 private int buf_length; field in class:SerializerTraceWriter
82 buf_length = size;
182 * Remember the buffer can hold a few more characters than buf_length
184 if (count >= buf_length)
225 if (lengthx3 >= buf_length)
237 if (lengthx3 > buf_length - count)
286 if (lengthx3 >= buf_length)
297 if (lengthx3 > buf_length - count)
  /device/linaro/hikey/hifi/xaf/host-apf/utest/
xaf-dec-mix-test.c 105 static int consume_output(void *p_buf, int buf_length, void *p_output)
112 fwrite(p_buf, 1, buf_length, fp);
114 if (xa_playback_buf(pb_handle, p_buf, buf_length)) {
123 static int read_input(void *p_buf, int buf_length, int *read_length, void *p_input)
131 *read_length = fread(p_buf, 1, buf_length, fp);
217 int buf_length = XAF_INBUF_SIZE; local
321 XF_CHK_API(read_input(dec_inbuf[i][j], buf_length, &read_length, p_input[i]));
xaf-dec-test.c 94 static int consume_output(void *p_buf, int buf_length, void *p_output)
101 fwrite(p_buf, 1, buf_length, fp);
103 if (xa_playback_buf(pb_handle, p_buf, buf_length)) {
112 static int read_input(void *p_buf, int buf_length, int *read_length, void *p_input)
120 *read_length = fread(p_buf, 1, buf_length, fp);
189 int buf_length = XAF_INBUF_SIZE; local
279 XF_CHK_API(read_input(dec_inbuf[i], buf_length, &read_length, p_input));
  /external/skia/platform_tools/android/apps/arcore/src/main/cpp/
util.cc 97 GLint buf_length = 0; local
98 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &buf_length);
99 if (buf_length) {
100 char *buf = reinterpret_cast<char *>(malloc(buf_length));
102 glGetProgramInfoLog(program, buf_length, nullptr, buf);
  /external/skqp/platform_tools/android/apps/arcore/src/main/cpp/
util.cc 97 GLint buf_length = 0; local
98 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &buf_length);
99 if (buf_length) {
100 char *buf = reinterpret_cast<char *>(malloc(buf_length));
102 glGetProgramInfoLog(program, buf_length, nullptr, buf);
  /external/u-boot/drivers/net/
pcnet.c 46 s16 buf_length; member in struct:pcnet_rx_head
364 uc->rx_ring[i].buf_length = cpu_to_le16(-PKT_BUF_SZ);
367 ("Rx%d: base=0x%x buf_length=0x%hx status=0x%hx\n", i,
368 uc->rx_ring[i].base, uc->rx_ring[i].buf_length,

Completed in 279 milliseconds