Searched defs:bytes (Results 301 - 325 of 1496) sorted by relevance

<<11121314151617181920>>

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUCharacterNameReader.java43 * @param bytes ICU uprop.dat file buffer
46 protected UCharacterNameReader(ByteBuffer bytes) throws IOException argument
48 ICUBinary.readHeader(bytes, DATA_FORMAT_ID_, this);
49 m_byteBuffer_ = bytes;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DByteArrayWrapper.java34 public byte[] bytes; field in class:ByteArrayWrapper
38 * Different from bytes.length, size will be &lt;= bytes.length.
51 // leave bytes null, don't allocate twice
66 this.bytes = bytesToAdopt;
77 bytes = new byte[size];
78 source.get(bytes,0,size);
86 bytes = new byte[size];
87 copyBytes(source.bytes, 0, bytes,
[all...]
/external/iproute2/include/uapi/linux/
H A Dgen_stats.h21 * @bytes: number of seen bytes
25 __u64 bytes; member in struct:gnet_stats_basic
29 __u64 bytes; member in struct:gnet_stats_basic_packed
/external/iproute2/include/uapi/linux/netfilter/
H A Dxt_set.h71 struct ip_set_counter_match0 bytes; member in struct:xt_set_info_match_v3
90 struct ip_set_counter_match bytes; member in struct:xt_set_info_match_v4
/external/iptables/include/linux/netfilter/
H A Dxt_set.h70 struct ip_set_counter_match0 bytes; member in struct:xt_set_info_match_v3
79 struct ip_set_counter_match bytes; member in struct:xt_set_info_match_v4
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/
H A DContentTypeDetectorTest.java186 private void initData(byte[] bytes) throws IOException { argument
187 this.data = bytes;
191 private void initData(final int... bytes) throws IOException { argument
192 byte[] data = new byte[bytes.length];
193 for (int i = 0; i < bytes.length; i++) {
194 data[i] = (byte) bytes[i];
/external/jacoco/org.jacoco.core.test/src-java8/org/jacoco/core/test/validation/
H A DBootstrapMethodReferenceTest.java91 private static int run(final String className, final byte[] bytes) argument
94 return (Integer) new TargetLoader().add(className, bytes)
/external/jacoco/org.jacoco.examples/src/org/jacoco/examples/
H A DCoreTutorial.java69 * @param bytes
72 public void addDefinition(final String name, final byte[] bytes) { argument
73 definitions.put(name, bytes);
79 final byte[] bytes = definitions.get(name);
80 if (bytes != null) {
81 return defineClass(name, bytes, 0, bytes.length);
/external/kernel-headers/original/uapi/linux/
H A Dgen_stats.h21 * @bytes: number of seen bytes
25 __u64 bytes; member in struct:gnet_stats_basic
29 __u64 bytes; member in struct:gnet_stats_basic_packed
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_set.h71 struct ip_set_counter_match0 bytes; member in struct:xt_set_info_match_v3
90 struct ip_set_counter_match bytes; member in struct:xt_set_info_match_v4
/external/libavc/test/encoder/
H A Dinput.c55 WORD32 size, bytes; local
72 bytes = fread(pv_pic_info, 1, size, ps_app_ctxt->fp_pic_info);
73 if(bytes != size)
84 WORD32 bytes; local
112 bytes = fread(pv_mb_info, 1, size, ps_app_ctxt->fp_mb_info);
113 if(bytes != size)
121 WORD32 bytes; local
137 bytes = fread(pu1_buf, sizeof(UWORD8), wd, fp);
138 if(bytes != wd )
161 bytes
176 WORD32 bytes; local
[all...]
/external/libcap/libcap/
H A Dcap_extint.c25 __u8 bytes[CAP_SET_SIZE][NUMBER_OF_CAP_SETS]; member in struct:cap_ext_struct
66 result->bytes[j++][i] = val & 0xFF;
67 result->bytes[j++][i] = (val >>= 8) & 0xFF;
68 result->bytes[j++][i] = (val >>= 8) & 0xFF;
69 result->bytes[j++][i] = (val >> 8) & 0xFF;
108 val = export->bytes[bno++][set];
110 val |= export->bytes[bno++][set] << 8;
112 val |= export->bytes[bno++][set] << 16;
114 val |= export->bytes[bno++][set] << 24;
H A Dcap_file.c41 int bytes)
51 bytes -= XATTR_CAPS_SZ_1;
58 bytes -= XATTR_CAPS_SZ_2;
69 * Verify that we loaded exactly the right number of bytes
71 if (bytes != 0) {
40 _fcaps_load(struct vfs_cap_data *rawvfscap, cap_t result, int bytes) argument
/external/libchrome/base/metrics/
H A Dbucket_ranges.cc13 // Static table of checksums for all possible 8 bit bytes.
84 unsigned char bytes[sizeof(HistogramBase::Sample)]; member in union:base::__anon10881
88 sum = kCrcTable[(sum & 0xff) ^ converter.bytes[i]] ^ (sum >> 8);
92 // and we don't care about edge cases since we have an even number of bytes.
/external/libchrome/base/strings/
H A Dstring_number_conversions_unittest.cc836 unsigned char bytes[] = {0x01, 0xff, 0x02, 0xfe, 0x03, 0x80, 0x81}; local
837 hex = HexEncode(bytes, sizeof(bytes));
/external/libcups/cups/
H A Dlangprintf.c31 ssize_t bytes; /* Number of bytes formatted */ local
83 bytes = cupsUTF8ToCharset(output, (cups_utf8_t *)buffer, sizeof(output),
86 if (bytes > 0)
87 fwrite(output, 1, (size_t)bytes, stderr);
95 int /* O - Number of bytes written */
102 ssize_t bytes; /* Number of bytes formatted */ local
136 bytes = cupsUTF8ToCharset(output, (cups_utf8_t *)buffer, sizeof(output),
140 * Write the string and return the number of bytes writte
159 ssize_t bytes; /* Number of bytes formatted */ local
215 ssize_t bytes; /* Number of bytes formatted */ local
[all...]
/external/libcups/filter/
H A Dcommandtops.c136 ssize_t bytes; /* Number of bytes read */ local
299 while ((bytes = cupsBackChannelRead(bufptr, sizeof(buffer) - (size_t)(bufptr - buffer) - 1, 10.0)) > 0)
305 bufptr += bytes;
308 if (bytes == 0 ||
316 bytes = bufptr - buffer;
333 fprintf(stderr, "DEBUG: Got %d bytes.\n", (int)bytes);
383 if (bytes <= 0)
H A Derror.c54 ssize_t bytes; /* Bytes in message string */ local
60 bytes = vsnprintf(s, sizeof(s), f, ap);
63 if (bytes <= 0)
68 bytes ++;
70 if ((size_t)bytes >= sizeof(s))
73 if (bytes > (ssize_t)(buf->end - buf->current))
83 size = (size_t)(buf->end - buf->start + 2 * bytes + 1024);
106 memcpy(buf->current, s, (size_t)bytes);
107 buf->current += bytes - 1;
/external/libese/examples/
H A Dese_nxp_sample.c30 const uint8_t *bytes; member in struct:Apdu
44 .bytes = &kSelectCardManagerBytes[0],
51 .bytes = &kGetCplcBytes[0],
75 .bytes = &kSelectJcopIdentifyBytes[0],
103 printf("Sending %u bytes to card\n", apdu->length);
106 printf("%.2X ", apdu->bytes[i]);
109 recvd = ese_transceive(&ese, (uint8_t *)apdu->bytes, apdu->length, rx_buf,
118 printf("Read %d bytes from card\n", recvd);
/external/libese/libese-hw/nxp/pn80t/
H A Dnq_nci.c121 uint32_t bytes = 0; local
131 while (bytes < len) {
132 ssize_t ret = write(handle->fd, (void *)(buf + bytes), len - bytes);
142 bytes += ret;
165 uint32_t bytes = 0; local
166 while (bytes < len) {
167 ssize_t ret = read(handle->fd, (void *)(buf + bytes), len - bytes);
177 bytes
[all...]
/external/libese/tools/ese_relay/
H A Dese_relay.c128 ssize_t bytes = read(client_fd, tx_buf + data_read, tx_len - data_read); local
129 if (bytes < 0) {
134 data_read += bytes;
139 printf("Sending %u bytes to card\n", tx_len);
180 printf("Read %d bytes from card\n", rx_len);
196 ssize_t bytes = local
198 if (bytes < 0) {
203 data_read += bytes;
/external/libffi/src/
H A Dprep_cif.c113 unsigned bytes = 0; local
163 bytes = STACK_ARG_SIZE(sizeof(void*));
187 bytes += sizeof(void*);
192 if (((*ptr)->alignment - 1) & bytes)
193 bytes = (unsigned)ALIGN(bytes, (*ptr)->alignment);
196 if (bytes < 10 * FFI_SIZEOF_ARG &&
197 bytes + STACK_ARG_SIZE((*ptr)->size) > 10 * FFI_SIZEOF_ARG)
201 bytes = 10 * FFI_SIZEOF_ARG;
205 if (bytes <
[all...]
/external/libmojo/mojo/edk/system/
H A Dmessage_for_transit.h70 const void* bytes() const { function in class:mojo::edk::MessageForTransit
H A Dplatform_handle_dispatcher.cc79 const void* bytes,
78 Deserialize( const void* bytes, size_t num_bytes, const ports::PortName* ports, size_t num_ports, PlatformHandle* handles, size_t num_handles) argument
/external/libnl/include/linux-private/linux/
H A Dgen_stats.h18 * @bytes: number of seen bytes
22 __u64 bytes; member in struct:gnet_stats_basic
26 __u64 bytes; member in struct:gnet_stats_basic_packed

Completed in 617 milliseconds

<<11121314151617181920>>