Home
last modified time | relevance | path

Searched refs:buf_length (Results 1 – 6 of 6) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xml/serializer/
DSerializerTraceWriter.java60 private int buf_length; field in SerializerTraceWriter
82 buf_length = size; in setBufferSize()
184 if (count >= buf_length) in write()
225 if (lengthx3 >= buf_length) in write()
237 if (lengthx3 > buf_length - count) in write()
286 if (lengthx3 >= buf_length) in write()
297 if (lengthx3 > buf_length - count) in write()
/external/skqp/platform_tools/android/apps/arcore/src/main/cpp/
Dutil.cc97 GLint buf_length = 0; in CreateProgram() local
98 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &buf_length); in CreateProgram()
99 if (buf_length) { in CreateProgram()
100 char *buf = reinterpret_cast<char *>(malloc(buf_length)); in CreateProgram()
102 glGetProgramInfoLog(program, buf_length, nullptr, buf); in CreateProgram()
/external/skia/platform_tools/android/apps/arcore/src/main/cpp/
Dutil.cc97 GLint buf_length = 0; in CreateProgram() local
98 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &buf_length); in CreateProgram()
99 if (buf_length) { in CreateProgram()
100 char *buf = reinterpret_cast<char *>(malloc(buf_length)); in CreateProgram()
102 glGetProgramInfoLog(program, buf_length, nullptr, buf); in CreateProgram()
/external/u-boot/drivers/net/
Dpcnet.c46 s16 buf_length; member
364 uc->rx_ring[i].buf_length = cpu_to_le16(-PKT_BUF_SZ); in pcnet_init()
368 uc->rx_ring[i].base, uc->rx_ring[i].buf_length, in pcnet_init()
/external/webrtc/webrtc/modules/audio_coding/neteq/
Dneteq_unittest.cc47 bool IsAllZero(const int16_t* buf, size_t buf_length) { in IsAllZero() argument
49 for (size_t n = 0; n < buf_length && all_zero; ++n) in IsAllZero()
54 bool IsAllNonZero(const int16_t* buf, size_t buf_length) { in IsAllNonZero() argument
56 for (size_t n = 0; n < buf_length && all_non_zero; ++n) in IsAllNonZero()
/external/grpc-grpc/test/core/tsi/alts/zero_copy_frame_protector/
Dalts_iovec_record_protocol_test.cc79 static size_t alter_random_byte(uint8_t* buf, size_t buf_length) { in alter_random_byte() argument
82 gsec_test_bias_random_uint32(static_cast<uint32_t>(buf_length)); in alter_random_byte()