/external/icu/icu4c/source/samples/uciter8/ |
uciter8.c | 298 static const uint8_t bytes[]={ local 313 uiter_setLenient8(&iter2, (const char *)bytes, sizeof(bytes)-1); 317 uiter_setLenient8(&iter2, (const char *)bytes, -1); 322 uiter_setLenient8(&iter1, (const char*)bytes, -1);
|
/external/icu/icu4c/source/tools/toolutil/ |
unewdata.c | 41 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/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
ByteArrayWrapper.java | 32 public byte[] bytes; field in class:ByteArrayWrapper 36 * Different from bytes.length, size will be <= bytes.length. 49 // leave bytes null, don't allocate twice 64 this.bytes = bytesToAdopt; 75 bytes = new byte[size]; 76 source.get(bytes,0,size); 84 bytes = new byte[size]; 85 copyBytes(source.bytes, 0, bytes, 0, size) [all...] |
/external/iproute2/include/linux/ |
gen_stats.h | 19 * @bytes: number of seen bytes 23 __u64 bytes; member in struct:gnet_stats_basic 27 __u64 bytes; member in struct:gnet_stats_basic_packed
|
/external/ipsec-tools/ |
main.c | 73 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/ |
xt_set.h | 70 struct ip_set_counter_match bytes; member in struct:xt_set_info_match_v3
|
/external/kernel-headers/original/uapi/linux/ |
gen_stats.h | 19 * @bytes: number of seen bytes 23 __u64 bytes; member in struct:gnet_stats_basic 27 __u64 bytes; member in struct:gnet_stats_basic_packed
|
/external/kernel-headers/original/uapi/linux/netfilter/ |
xt_set.h | 70 struct ip_set_counter_match0 bytes; member in struct:xt_set_info_match_v3 89 struct ip_set_counter_match bytes; member in struct:xt_set_info_match_v4
|
/external/libavc/test/encoder/ |
input.c | 55 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 = fread(pu1_buf, sizeof(UWORD8), wd, fp) 176 WORD32 bytes; local [all...] |
/external/libbrillo/brillo/ |
cryptohome.cc | 113 std::vector<uint8_t> bytes; local 115 base::HexStringToBytes(sanitized, &bytes);
|
/external/libchrome/base/strings/ |
string_number_conversions_unittest.cc | 805 unsigned char bytes[] = {0x01, 0xff, 0x02, 0xfe, 0x03, 0x80, 0x81}; local 806 hex = HexEncode(bytes, sizeof(bytes));
|
/external/libedit/src/ |
chartype.c | 142 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/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/nio/ |
DirectByteBuffer.java | 170 int bytes = 0; local 173 bytes = bytes << 8; 174 bytes = bytes | (byteArray.get(baseOffset + i) & 0xFF); 178 bytes = bytes << 8; 179 bytes = bytes | (byteArray.get(baseOffset + i) & 0xFF); 182 return bytes; 186 long bytes = 0; local 202 short bytes = 0; local [all...] |
HeapByteBuffer.java | 161 int bytes = 0; local 164 bytes = bytes << 8; 165 bytes = bytes | (backingArray[baseOffset + i] & 0xFF); 169 bytes = bytes << 8; 170 bytes = bytes | (backingArray[baseOffset + i] & 0xFF); 173 return bytes; 178 long bytes = 0; local 195 short bytes = 0; local [all...] |
/external/libnl/include/linux/ |
gen_stats.h | 15 * @bytes: number of seen bytes 20 __u64 bytes; member in struct:gnet_stats_basic
|
/external/libvorbis/examples/ |
decoder_example.c | 57 int bytes; local 90 bytes=fread(buffer,1,4096,stdin); 91 ogg_sync_wrote(&oy,bytes); 96 if(bytes<4096)break; 177 bytes=fread(buffer,1,4096,stdin); 178 if(bytes==0 && i<2){ 182 ogg_sync_wrote(&oy,bytes); 286 bytes=fread(buffer,1,4096,stdin); 287 ogg_sync_wrote(&oy,bytes); 288 if(bytes==0)eos=1 [all...] |
encoder_example.c | 65 /* we cheat on the WAV header; we just bypass 44 bytes (simplest WAV 66 header is 44 bytes) and assume that the data is 44.1khz, stereo, 16 bit 182 long bytes=fread(readbuffer,1,READ*4,stdin); /* stereo hardwired here */ local 184 if(bytes==0){ 198 for(i=0;i<bytes/4;i++){
|
/external/libvorbis/test/ |
write_read.c | 147 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 == 0) eos = 1 [all...] |
/external/libweave/third_party/chromium/base/strings/ |
string_number_conversions_unittest.cc | 741 unsigned char bytes[] = {0x01, 0xff, 0x02, 0xfe, 0x03, 0x80, 0x81}; local 742 hex = HexEncode(bytes, sizeof(bytes));
|
/external/libweave/third_party/libuweave/src/ |
macaroon_caveat.h | 14 const uint8_t* bytes; member in struct:__anon18282
|
/external/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
SIMCCodeEmitter.cpp | 187 unsigned bytes = Desc.getSize(); local 189 for (unsigned i = 0; i < bytes; i++) { 193 if (bytes > 4)
|
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
tgsi_parse.c | 309 unsigned bytes = n * sizeof(struct tgsi_token); local 310 struct tgsi_token *new_tokens = (struct tgsi_token *) MALLOC(bytes); 312 memcpy(new_tokens, tokens, bytes); 323 unsigned bytes = num_tokens * sizeof(struct tgsi_token); local 324 return (struct tgsi_token *) MALLOC(bytes);
|
/external/mesa3d/src/mesa/drivers/dri/nouveau/ |
nouveau_util.h | 84 GLubyte bytes[4]; local 85 _mesa_unclamped_float_rgba_to_ubyte(bytes, c); 86 return pack_rgba_i(f, bytes);
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/ |
FileEntry.java | 34 private byte[] bytes = EMPTY;
field in class:FileEntry 75 * @return the file size in bytes
84 * @param contents - the String whose bytes are used as the contents
97 // Copy the bytes[] to guard against subsequent modification of the source array
130 byte[] initialContents = (append) ? bytes : EMPTY;
164 return (out != null) ? out.toByteArray() : bytes;
173 this.bytes = contents;
|
/external/nanopb-c/tests/encode_unittests/ |
encode_unittests.c | 39 * Y is a string, which may contain null bytes. Null terminator is ignored. 172 struct { size_t size; uint8_t bytes[5]; } value = {5, {'x', 'y', 'z', 'z', 'y'}}; member in struct:__anon21341 266 COMMENT("Test pb_encode with bytes message.")
|