Searched defs:bytes (Results 401 - 425 of 1230) sorted by relevance

<<11121314151617181920>>

/external/emma/core/java12/com/vladium/jcd/cls/attribute/
H A DCodeAttribute_info.java58 * The value of the code_length item gives the number of bytes in the code array for
60 * not be empty.The code array gives the actual bytes of Java Virtual Machine code that
209 final UDataInputStream bytes)
214 m_max_stack = bytes.readU2 ();
215 m_max_locals = bytes.readU2 ();
217 final long code_length = bytes.readU4 ();
220 bytes.readFully (m_code);
224 final int exception_table_length = bytes.readU2 ();
229 Exception_info exception_info = new Exception_info (bytes);
237 final int attributes_count = bytes
207 CodeAttribute_info(final IConstantCollection constants, final int attribute_name_index, final long attribute_length, final UDataInputStream bytes) argument
[all...]
/external/fio/os/
H A Dos-freebsd.h61 static inline int blockdev_size(struct fio_file *f, unsigned long long *bytes) argument
66 *bytes = size;
70 *bytes = 0;
74 static inline int chardev_size(struct fio_file *f, unsigned long long *bytes) argument
76 return blockdev_size(f, bytes);
H A Dos-hpux.h50 static inline int blockdev_size(struct fio_file *f, unsigned long long *bytes) argument
58 *bytes = lba * dext.lgblksz;
62 *bytes = 0;
66 static inline int chardev_size(struct fio_file *f, unsigned long long *bytes) argument
68 return blockdev_size(f, bytes);
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
H A DMemorySizeCalculator.java73 private static int toMb(int bytes) { argument
74 return bytes / (1024 * 1024);
/external/guava/guava/src/com/google/common/hash/
H A DAbstractNonStreamingHashFunction.java48 public Hasher putBytes(byte[] bytes) { argument
50 stream.write(bytes);
58 public Hasher putBytes(byte[] bytes, int off, int len) { argument
59 stream.write(bytes, off, len);
H A DHasher.java23 * translate all multibyte values ({@link #putInt(int)}, {@link #putLong(long)}, etc) to bytes
32 @Override Hasher putBytes(byte[] bytes); argument
33 @Override Hasher putBytes(byte[] bytes, int off, int len); argument
H A DMessageDigestHashFunction.java78 @Override public Hasher putBytes(byte[] bytes) { argument
80 digest.update(bytes);
84 @Override public Hasher putBytes(byte[] bytes, int off, int len) { argument
86 checkPositionIndexes(off, off + len, bytes.length);
87 digest.update(bytes, off, len);
/external/icu/icu4c/source/i18n/
H A Dcollationsettings.cpp114 uint8_t *bytes = (uint8_t *)uprv_malloc(256 + capacity * 4); local
115 if(bytes == NULL) { return FALSE; }
119 reorderTable = ownedTable = bytes + capacity * 4;
120 reorderCodes = ownedCodes = (int32_t *)bytes;
/external/icu/icu4c/source/test/intltest/
H A Dconvtest.h38 const uint8_t *bytes; member in struct:ConversionCase
/external/icu/icu4c/source/tools/toolutil/
H A Dunewdata.c41 uint8_t bytes[16]; local
130 /* write padding bytes to align the data section to 16 bytes */
134 uprv_memset(bytes, 0, headerSize);
135 T_FileStream_write(pData->file, bytes, headerSize);
/external/ipsec-tools/
H A Dmain.c73 unsigned char bytes[2]; local
74 if (recv(control, &bytes[0], 1, 0) != 1 ||
75 recv(control, &bytes[1], 1, 0) != 1) {
79 int length = bytes[0] << 8 | bytes[1];
/external/iptables/include/linux/netfilter/
H A Dxt_sctp.h38 #define bytes(type) (sizeof(type) * 8) macro
42 (chunkmap)[type / bytes(__u32)] |= \
43 1 << (type % bytes(__u32)); \
48 (chunkmap)[type / bytes(__u32)] &= \
49 ~(1 << (type % bytes(__u32))); \
54 ((chunkmap)[type / bytes (__u32)] & \
55 (1 << (type % bytes (__u32)))) ? 1: 0; \
/external/jpeg/
H A Djmemmac.c158 long bytes = byte_count; local
164 retVal = FSRead ( info->temp_file, &bytes,
166 if ( retVal != noErr || bytes != byte_count )
176 long bytes = byte_count; local
182 retVal = FSWrite ( info->temp_file, &bytes,
184 if ( retVal != noErr || bytes != byte_count )
279 * Note that FreeMem returns the total number of free bytes;
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_sctp.h38 #define bytes(type) (sizeof(type) * 8) macro
42 (chunkmap)[type / bytes(__u32)] |= \
43 1 << (type % bytes(__u32)); \
48 (chunkmap)[type / bytes(__u32)] &= \
49 ~(1 << (type % bytes(__u32))); \
54 ((chunkmap)[type / bytes (__u32)] & \
55 (1 << (type % bytes (__u32)))) ? 1: 0; \
/external/libedit/src/
H A Dchartype.c142 ssize_t bytes; local
160 bytes = (ssize_t)mbstowcs(p, argv[i], bufspace);
162 if (bytes == -1) {
166 bytes++; /* include '\0' in the count */
167 bufspace -= (size_t)bytes;
168 p += bytes;
/external/libvorbis/test/
H A Dwrite_read.c147 int bytes; local
163 bytes = fread (buffer,1,8192,file);
164 ogg_sync_wrote (&oy,bytes);
167 if(bytes < 8192) {
220 bytes = fread (buffer,1,4096,file);
221 if (bytes == 0 && i < 2) {
226 ogg_sync_wrote (&oy,bytes);
278 bytes = fread (buffer,1,4096,file);
279 ogg_sync_wrote (&oy,bytes);
280 if (bytes
[all...]
/external/libvterm/src/
H A Dencoding.c10 // number of bytes remaining in this codepoint
13 // number of bytes total in this codepoint once it's finished
30 const char bytes[], size_t *pos, size_t bytelen)
39 unsigned char c = bytes[*pos];
156 const char bytes[], size_t *pos, size_t bytelen)
158 int is_gr = bytes[*pos] & 0x80;
161 unsigned char c = bytes[*pos] ^ is_gr;
181 const char bytes[], size_t *pos, size_t bytelen)
184 int is_gr = bytes[*pos] & 0x80;
187 unsigned char c = bytes[*po
28 decode_utf8(VTermEncoding *enc, void *data_, uint32_t cp[], int *cpi, int cplen, const char bytes[], size_t *pos, size_t bytelen) argument
154 decode_usascii(VTermEncoding *enc, void *data, uint32_t cp[], int *cpi, int cplen, const char bytes[], size_t *pos, size_t bytelen) argument
179 decode_table(VTermEncoding *enc, void *data, uint32_t cp[], int *cpi, int cplen, const char bytes[], size_t *pos, size_t bytelen) argument
[all...]
H A Dparser.c26 // Extract leader bytes 0x3c to 0x3f
87 fprintf(stderr, "libvterm: TODO unhandled CSI bytes \"%.*s\"\n", (int)(arglen - i), args + i);
110 fprintf(stderr, "Truncating strbuffer preserve to %zd bytes\n", len);
190 void vterm_push_bytes(VTerm *vt, const char *bytes, size_t len) argument
205 string_start = bytes;
209 #define ENTER_STRING_STATE(st) do { vt->parser_state = st; string_start = bytes + pos + 1; } while(0)
213 unsigned char c = bytes[pos];
217 append_strbuffer(vt, string_start, bytes + pos - string_start);
218 string_start = bytes + pos + 1;
241 append_strbuffer(vt, string_start, bytes
[all...]
/external/lldb/source/API/
H A DSBInputReader.cpp63 const char *bytes,
71 bytes,
58 PrivateCallback( void *baton, InputReader &reader, lldb::InputReaderAction notification, const char *bytes, size_t bytes_len ) argument
/external/lldb/source/Core/
H A DInputReader.cpp107 InputReader::HandleRawBytes (const char *bytes, size_t bytes_len) argument
113 end_token = ::strstr (bytes, m_end_token.c_str());
114 if (end_token >= bytes + bytes_len)
118 const char *p = bytes;
119 const char *end = bytes + bytes_len;
142 // Return how many bytes were handled.
143 return p - bytes;
191 return word_start - bytes + bytes_handled;
194 return p - bytes;
203 const char *line_start = bytes;
[all...]
/external/llvm/lib/Target/R600/MCTargetDesc/
H A DSIMCCodeEmitter.cpp135 unsigned bytes = Desc.getSize(); local
137 for (unsigned i = 0; i < bytes; i++) {
141 if (bytes > 4)
/external/mesa3d/src/gallium/tests/graw/
H A Docclusion-query.c78 set_vertices(struct vertex *vertices, unsigned bytes) argument
100 bytes,
/external/mesa3d/src/glsl/
H A Dmain.cpp83 size_t bytes = fread(text + total_read, local
85 if (bytes < size - total_read) {
91 if (bytes == 0) {
95 total_read += bytes;
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_util.h84 GLubyte bytes[4]; local
85 _mesa_unclamped_float_rgba_to_ubyte(bytes, c);
86 return pack_rgba_i(f, bytes);
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DPipeline.java35 * Input class for the pipelined parser. Buffer all bytes read from the socket
87 byte[] bytes; field in class:Pipeline.Buffer
93 public Buffer(byte[] bytes, int length) { argument
96 this.bytes = bytes;
100 int retval = bytes[ptr++] & 0xFF;
131 public void write(byte[] bytes, int start, int length) throws IOException { argument
134 Buffer buff = new Buffer(bytes, length);
142 public void write(byte[] bytes) throws IOException { argument
145 Buffer buff = new Buffer(bytes, byte
[all...]

Completed in 684 milliseconds

<<11121314151617181920>>