Searched defs:bytes (Results 1 - 25 of 1230) sorted by last modified time

1234567891011>>

/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/yaffs2/yaffs2/utils/
H A Dmkyaffs2image.c260 __u8 bytes[chunkSize]; local
263 yaffs_ObjectHeader *oh = (yaffs_ObjectHeader *)bytes;
264 char *xb = (char *)bytes + sizeof(*oh);
274 memset(bytes,0xff,sizeof(bytes));
322 return write_chunk(bytes,objId,0,0xffff);
450 __u8 bytes[chunkSize]; local
457 memset(bytes,0xff,sizeof(bytes));
458 while((nBytes = read(h,bytes,sizeo
[all...]
H A Dmkyaffsimage.c209 yaffs_TagsUnion * tags = (yaffs_TagsUnion* )tagsPtr; // Work in bytes.
333 __u8 bytes[512]; local
336 yaffs_ObjectHeader *oh = (yaffs_ObjectHeader *)bytes;
338 memset(bytes,0xff,512);
379 return write_chunk(bytes,objId,0,0xffff);
459 __u8 bytes[512]; local
466 memset(bytes,0xff,512);
467 while((nBytes = read(h,bytes,512)) > 0)
470 write_chunk(bytes,newObj,chunk,nBytes);
471 memset(bytes,
[all...]
/external/zlib/src/contrib/untgz/
H A Duntgz.c529 unsigned int bytes = (remaining > BLOCKSIZE) ? BLOCKSIZE : remaining; local
533 if (fwrite(&buffer,sizeof(char),bytes,outfile) != bytes)
542 remaining -= bytes;
/external/webrtc/src/system_wrappers/source/
H A Dfile_impl.cc73 int FileWrapperImpl::SetMaxFileSize(size_t bytes) argument
75 _maxSizeInBytes = bytes;
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Drandom.c118 * length (32) and return 16 bytes from instead of only half.
157 u8 *bytes = buf; local
178 *bytes++ ^= tmp[i];
190 "for generating strong random bytes");
197 *bytes++ ^= tmp[i];
251 wpa_printf(MSG_DEBUG, "random: Got %u/%u bytes from "
264 wpa_printf(MSG_INFO, "random: Only %u/%u bytes of strong "
323 wpa_printf(MSG_DEBUG, "random: Got %u/%u bytes from /dev/random",
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Ddriver_wext.c122 * @ssid: Buffer for the SSID; must be at least 32 bytes long
246 int bytes; local
251 bytes = strspn(spos, "0123456789abcdefABCDEF");
252 if (!bytes || (bytes & 1))
254 bytes /= 2;
256 req_ies = os_malloc(bytes);
258 hexstr2bin(spos, req_ies, bytes) < 0)
261 data.assoc_info.req_ies_len = bytes;
263 spos += bytes *
1284 int bytes; local
1299 int bytes; local
1314 int bytes; local
[all...]
/external/wpa_supplicant_8/src/crypto/
H A Drandom.c118 * length (32) and return 16 bytes from instead of only half.
157 u8 *bytes = buf; local
178 *bytes++ ^= tmp[i];
190 "for generating strong random bytes");
197 *bytes++ ^= tmp[i];
251 wpa_printf(MSG_DEBUG, "random: Got %u/%u bytes from "
264 wpa_printf(MSG_INFO, "random: Only %u/%u bytes of strong "
323 wpa_printf(MSG_DEBUG, "random: Got %u/%u bytes from /dev/random",
/external/wpa_supplicant_8/src/drivers/
H A Ddriver_wext.c122 * @ssid: Buffer for the SSID; must be at least 32 bytes long
246 int bytes; local
251 bytes = strspn(spos, "0123456789abcdefABCDEF");
252 if (!bytes || (bytes & 1))
254 bytes /= 2;
256 req_ies = os_malloc(bytes);
258 hexstr2bin(spos, req_ies, bytes) < 0)
261 data.assoc_info.req_ies_len = bytes;
263 spos += bytes *
1284 int bytes; local
1299 int bytes; local
1314 int bytes; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A Dctrl_iface_named_pipe.c89 static VOID WINAPI ctrl_iface_read_completed(DWORD err, DWORD bytes,
96 static VOID WINAPI global_iface_read_completed(DWORD err, DWORD bytes,
254 static VOID WINAPI ctrl_iface_write_completed(DWORD err, DWORD bytes, argument
259 "err=%d bytes=%d", dst, (int) err, (int) bytes);
346 static VOID WINAPI ctrl_iface_read_completed(DWORD err, DWORD bytes, argument
351 "bytes=%d", dst, (int) err, (int) bytes);
352 if (err == 0 && bytes > 0)
353 wpa_supplicant_ctrl_iface_rx(dst, bytes);
361 DWORD bytes; local
685 global_iface_write_completed(DWORD err, DWORD bytes, LPOVERLAPPED overlap) argument
762 global_iface_read_completed(DWORD err, DWORD bytes, LPOVERLAPPED overlap) argument
778 DWORD bytes; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Drandom.c118 * length (32) and return 16 bytes from instead of only half.
157 u8 *bytes = buf; local
178 *bytes++ ^= tmp[i];
190 "for generating strong random bytes");
197 *bytes++ ^= tmp[i];
251 wpa_printf(MSG_DEBUG, "random: Got %u/%u bytes from "
264 wpa_printf(MSG_INFO, "random: Only %u/%u bytes of strong "
323 wpa_printf(MSG_DEBUG, "random: Got %u/%u bytes from /dev/random",
/external/wpa_supplicant_8/wpa_supplicant/src/drivers/
H A Ddriver_wext.c122 * @ssid: Buffer for the SSID; must be at least 32 bytes long
246 int bytes; local
251 bytes = strspn(spos, "0123456789abcdefABCDEF");
252 if (!bytes || (bytes & 1))
254 bytes /= 2;
256 req_ies = os_malloc(bytes);
258 hexstr2bin(spos, req_ies, bytes) < 0)
261 data.assoc_info.req_ies_len = bytes;
263 spos += bytes *
1284 int bytes; local
1299 int bytes; local
1314 int bytes; local
[all...]
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DByteBuffer.java56 * @param length the length of valid bytes in the array
101 * @param length the length of valid bytes in the array
116 * @return Returns a byte stream that is limited to the valid amount of bytes.
125 * @return Returns the length, that means the number of valid bytes, of the buffer;
192 * @param bytes a byte array
196 public void append(byte[] bytes, int offset, int len) argument
199 System.arraycopy(bytes, offset, buffer, length, len);
206 * @param bytes a byte array
208 public void append(byte[] bytes) argument
210 append(bytes,
[all...]
/external/valgrind/main/none/tests/x86/
H A Dx86locked.c98 static UInt crcBytes ( UChar* bytes, UWord nBytes, UInt crcIn ) argument
102 UPDATE_CRC(crc, bytes[0]);
103 UPDATE_CRC(crc, bytes[1]);
104 UPDATE_CRC(crc, bytes[2]);
105 UPDATE_CRC(crc, bytes[3]);
106 bytes += 4;
110 UPDATE_CRC(crc, bytes[0]);
111 bytes += 1;
/external/vixl/src/a64/
H A Dsimulator-a64.cc1121 uint8_t bytes[8]; local
1124 bytes[i] = (value & mask) >> (i * 8);
1139 result |= bytes[permute_table[mode][i]];
2448 // argument. Normally, printf returns the number of bytes transmitted, so we
/external/webp/include/webp/
H A Dmux_types.h59 const uint8_t* bytes; member in struct:WebPData
74 free((void*)webp_data->bytes);
84 if (src->bytes != NULL && src->size != 0) {
85 dst->bytes = (uint8_t*)malloc(src->size);
86 if (dst->bytes == NULL) return 0;
87 memcpy((void*)dst->bytes, src->bytes, src->size);
/external/webp/src/enc/
H A Dpicture_csp.c27 uint8_t bytes[4]; member in union:__anon33374
29 #define ALPHA_IS_LAST (test_endian.bytes[3] == 0xff)
45 if (alpha[x] != 0xff) return 1; // TODO(skal): check 4/8 bytes at a time.
175 int step, // bytes per pixel
176 int rgb_stride, // bytes per scanline
/external/valgrind/main/VEX/priv/
H A Dguest_s390_toIR.c10844 unsigned long bytes; member in union:__anon31607
10871 ss.bytes = last_execute_target;
10944 UChar *bytes; local
10976 bytes = (UChar *) &last_execute_target;
10977 s390_decode_and_irgen(bytes, ((((bytes[0] >> 6) + 1) >> 1) + 1) << 1,
12931 appending the remaining bytes to the right with 0. This is done
12932 by AND'ing the 4 bytes loaded from memory with an appropriate
13236 /* We're processing the 2nd operand 2 bytes at a time. Therefore, if
13237 there are less than 2 bytes lef
13896 s390_decode_2byte_and_irgen(UChar *bytes) argument
14029 s390_decode_4byte_and_irgen(UChar *bytes) argument
15083 s390_decode_6byte_and_irgen(UChar *bytes) argument
16348 s390_decode_special_and_irgen(UChar *bytes) argument
16389 s390_decode_and_irgen(UChar *bytes, UInt insn_length, DisResult *dres) argument
[all...]
/external/valgrind/main/VEX/switchback/
H A Dswitchback.c126 printf("%d translations made, %d tt bytes\n",
662 void log_bytes ( HChar* bytes, Int nbytes ) argument
664 fwrite ( bytes, 1, nbytes, stdout );
/external/valgrind/main/VEX/
H A Dtest_main.c61 void log_bytes ( HChar* bytes, Int nbytes ) argument
63 fwrite ( bytes, 1, nbytes, stdout );
144 /* first line is: . bb-number bb-addr n-bytes */
160 /* thumb ITstate analysis needs to examine the 18 bytes
2393 consider it. If larger than 8 bytes, deal with it in 8-byte
2478 consider it. If larger than 8 bytes, deal with it in 8-byte
/external/valgrind/main/VEX/useful/
H A Dsmchash.c25 UChar* bytes; member in struct:__anon32344
52 gb->bytes = malloc( gb->nbytes + nToAlloc);
53 gb->actual = gb->bytes + (gb->ga & 3);
54 assert(gb->bytes);
83 free(gb->bytes);
/external/valgrind/main/coregrind/
H A Dlauncher-darwin.c146 ssize_t bytes; local
152 bytes = read(fd, buf, sizeof(buf));
154 if (bytes != sizeof(buf)) {
H A Dm_translate.c735 void log_bytes ( HChar* bytes, Int nbytes ) argument
739 VG_(printf)("%c%c%c%c", bytes[i], bytes[i+1], bytes[i+2], bytes[i+3]);
741 VG_(printf)("%c", bytes[i]);
H A Dpub_core_aspacemgr.h286 also ensure that at least abs(EXTRA) extra free bytes will remain
296 mapping by DELTA bytes, taking the space from a reservation section
311 the mapping forwards only by DELTA bytes, and trashes whatever was
349 HChar bytes[VG_STACK_GUARD_SZB member in struct:__anon32690
364 /* Figure out how many bytes of the stack's active area have not been
/external/valgrind/main/coregrind/m_ume/
H A Delf.c223 UInt bytes; local
225 bytes = VG_PGROUNDUP(brkaddr)-VG_PGROUNDUP(bss);
226 if (bytes > 0) {
229 VG_PGROUNDUP(bss), bytes,
233 check_mmap(res, VG_PGROUNDUP(bss), bytes);
236 bytes = bss & (VKI_PAGE_SIZE - 1);
239 if ((prot & VKI_PROT_WRITE) && (bytes > 0)) {
240 bytes = VKI_PAGE_SIZE - bytes;
241 VG_(memset)((void *)bss, 0, bytes);
[all...]

Completed in 3049 milliseconds

1234567891011>>