HomeSort by relevance Sort by last modified time
    Searched full:max_bytes (Results 1 - 25 of 39) sorted by null

1 2

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
CharsetEncoderTest.java 38 static final int MAX_BYTES = 3;
86 assertTrue(encoder.maxBytesPerChar() == MAX_BYTES);
107 encoder = new MockCharsetEncoder(cs, (float) AVER_BYTES, MAX_BYTES);
110 assertTrue(encoder.maxBytesPerChar() == MAX_BYTES);
121 CharsetEncoder ec = new MockCharsetEncoder(cs, 1, MAX_BYTES);
124 assertTrue(ec.maxBytesPerChar() == MAX_BYTES);
131 ec = new MockCharsetEncoder(null, 1, MAX_BYTES);
137 MAX_BYTES);
139 // Commented out since the comment is wrong since MAX_BYTES > 1
141 // ec = new MockCharsetEncoder(cs, MAX_BYTES, 1)
    [all...]
CharsetDecoderTest.java 36 protected static final int MAX_BYTES = 3;
66 // assertTrue(decoder.maxCharsPerByte() == MAX_BYTES);
93 decoder = new MockCharsetDecoder(cs, (float) AVER_BYTES, MAX_BYTES);
96 CharsetDecoder ec = new MockCharsetDecoder(cs, 1, MAX_BYTES);
99 assertTrue(ec.maxCharsPerByte() == MAX_BYTES);
105 ec = new MockCharsetDecoder(null, 1, MAX_BYTES);
108 assertTrue(ec.maxCharsPerByte() == MAX_BYTES);
111 new String[0]), 1, MAX_BYTES);
113 // Commented out since the comment is wrong since MAX_BYTES > 1
115 // ec = new MockCharsetDecoder(cs, MAX_BYTES, 1)
    [all...]
  /external/toybox/toys/posix/
xargs.c 42 long max_bytes;
81 if (++TT.bytes >= TT.max_bytes && TT.max_bytes) return save;
97 if (TT.max_bytes && TT.bytes >= TT.max_bytes) return data;
  /external/wpa_supplicant_8/src/wps/
httpread.c 56 int max_bytes; /* maximum file size else abort it */ member in struct:httpread
169 if (h->content_length < 0 || h->content_length > h->max_bytes) {
331 h->max_bytes = 0;
339 h->max_bytes = 0;
452 if (h->max_bytes == 0) {
493 if (h->body_nbytes >= h->max_bytes) {
495 "httpread: body_nbytes=%d >= max_bytes=%d",
496 h->body_nbytes, h->max_bytes);
509 new_alloc_nbytes > h->max_bytes) {
547 h->chunk_size > h->max_bytes) {
    [all...]
httpread.h 66 * Pass max_bytes == 0 to not read body at all (required for e.g.
74 int max_bytes, /* maximum file size else abort it */
  /external/freetype/src/psaux/
psobjs.h 114 FT_Offset max_bytes,
psobjs.c     [all...]
  /external/pdfium/third_party/freetype/src/psaux/
psobjs.h 114 FT_Offset max_bytes,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/
control_external.h 192 size_t max_bytes);
213 size_t max_bytes);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/
control_external.h 192 size_t max_bytes);
213 size_t max_bytes);
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1PRNG_SecureRandomImpl.java 92 // MAX_BYTES - maximum # of seed bytes processing which doesn't require extra frame
108 private static final int MAX_BYTES = 48;
334 if (seed[BYTES_OFFSET] < MAX_BYTES) {
380 if (seed[BYTES_OFFSET] > MAX_BYTES) {
387 if (seed[BYTES_OFFSET] > MAX_BYTES) {
458 if (seed[BYTES_OFFSET] < MAX_BYTES) { // no extra frame
517 if (seed[BYTES_OFFSET] >= MAX_BYTES) {
  /external/freetype/src/cache/
ftcmanag.h 120 /* its `num_bytes' field is greater than its `max_bytes' field. It */
  /external/webp/src/utils/
bit_writer.c 212 const size_t max_bytes = bw->end_ - bw->buf_; local
220 if (max_bytes > 0 && size_required <= max_bytes) return 1;
221 allocated_size = (3 * max_bytes) >> 1;
  /art/runtime/verifier/
register_line.cc 413 std::vector<uint8_t>* data, size_t max_bytes) {
422 if ((i / 8) >= max_bytes) {
426 DCHECK_LT(i / 8, max_bytes) << "val=" << static_cast<uint32_t>(val);
register_line.h 295 void WriteReferenceBitMap(MethodVerifier* verifier, std::vector<uint8_t>* data, size_t max_bytes);
  /external/libvncserver/libvncserver/
httpd.c 79 static rfbBool parseParams(const char *request, char *result, int max_bytes);
558 parseParams(const char *request, char *result, int max_bytes)
607 if (cur_bytes + len + 1 > max_bytes) {
  /packages/experimental/procstatlog/
procstatreport.py 390 max_bytes = 0
403 max_bytes = max(max_bytes, rx, tx)
434 "valueRange": [0, max_bytes * 11 / 10],
  /system/bt/doc/
style_guide.md 186 size_t open_and_read_file(const char *filename, void *target_buffer, size_t max_bytes) {
190 assert(max_bytes > 0);
  /external/google-breakpad/src/google_breakpad/processor/
minidump.h 206 static void set_max_bytes(uint32_t max_bytes) { max_bytes_ = max_bytes; }
207 static uint32_t max_bytes() { return max_bytes_; } function in class:google_breakpad::MinidumpMemoryRegion
    [all...]
  /external/lldb/source/Plugins/Process/MacOSX-Kernel/
CommunicationKDP.cpp 980 const uint32_t max_bytes = packet.GetU32 (&offset); local
    [all...]
  /external/freetype/include/
ftcache.h 290 /* max_bytes :: Maximum number of bytes to use for cached data nodes. */
311 FT_ULong max_bytes,
    [all...]
  /external/pdfium/third_party/freetype/include/
ftcache.h 290 /* max_bytes :: Maximum number of bytes to use for cached data nodes. */
311 FT_ULong max_bytes,
    [all...]
  /external/freetype/include/internal/
psaux.h 367 FT_Offset max_bytes,
    [all...]
  /external/pdfium/third_party/freetype/include/internal/
psaux.h 367 FT_Offset max_bytes,
    [all...]
  /external/toybox/generated/
globals.h 1169 long max_bytes; member in struct:xargs_data

Completed in 1788 milliseconds

1 2