HomeSort by relevance Sort by last modified time
    Searched refs:bytes (Results 476 - 500 of 1073) sorted by null

<<11121314151617181920>>

  /external/libvpx/vp8/common/arm/armv6/
copymem16x16_v6.asm 99 ;copy 4 bytes each time
130 ;copy 8 bytes each time
157 ;copy 16 bytes each time
  /external/qemu/audio/
wavaudio.c 66 int64_t bytes = local
69 if (bytes > INT_MAX) {
73 samples = bytes >> hw->info.shift;
159 dolog ("Could not allocate buffer (%d bytes)\n",
303 dolog("unsupported bytes per sample (%d) in '%s'\n",
359 int64_t bytes = muldiv64(ticks, hw->info.bytes_per_second, get_ticks_per_sec()); local
361 if (bytes > INT_MAX) {
365 samples = bytes >> hw->info.shift;
  /external/webkit/WebCore/loader/
FTPDirectoryDocument.cpp 164 int64_t bytes = size.toUInt64(&valid); local
168 if (bytes < 1000000)
169 return String::format("%.2f KB", static_cast<float>(bytes)/1000);
171 if (bytes < 1000000000)
172 return String::format("%.2f MB", static_cast<float>(bytes)/1000000);
174 return String::format("%.2f GB", static_cast<float>(bytes)/1000000000);
  /external/webkit/WebKit/mac/Plugins/Hosted/
HostedNetscapePluginStream.mm 111 const_cast<char*>(reinterpret_cast<const char*>([headers bytes])), [headers length]);
114 void HostedNetscapePluginStream::didReceiveData(WebCore::NetscapePlugInStreamLoader*, const char* bytes, int length)
119 const_cast<char*>(bytes), length);
144 // and all original bytes verbatim, rather than sent through Unicode translation.
155 // This is not the intended behavior; we're supposed to pass original bytes verbatim.
156 // But we don't have the original bytes, we have NSStrings built by the URL loading system.
  /hardware/ril/mock-ril/src/cpp/
ctrl_server.cpp 78 uint8_t *bytes = (uint8_t *)data; local
82 ret_value = send(s, bytes, length, 0);
89 bytes += ret_value;
98 uint8_t *bytes = (uint8_t *)data; local
102 ret_value = recv(s, bytes, length, 0);
109 bytes += ret_value;
  /libcore/luni/src/main/native/
org_apache_harmony_luni_platform_OSFileSystem.cpp 292 ScopedByteArrayRW bytes(env, byteArray);
293 if (bytes.get() == NULL) {
296 jint buf = static_cast<jint>(reinterpret_cast<uintptr_t>(bytes.get()));
315 ScopedByteArrayRO bytes(env, byteArray);
316 if (bytes.get() == NULL) {
319 jint buf = static_cast<jint>(reinterpret_cast<uintptr_t>(bytes.get()));
438 * pipe, then avail will be set to a number of bytes that are
org_apache_harmony_xml_ExpatParser.cpp 45 InternedString() : interned(NULL), bytes(NULL) {
49 delete[] bytes;
56 const char* bytes; member in struct:InternedString
225 * to Java's String.hashCode(). This hashes the bytes while String.hashCode()
243 * representing the given UTF-8 bytes.
245 * @param bytes null-terminated string to intern
246 * @param hash of bytes
249 static InternedString* newInternedString(JNIEnv* env, const char* bytes, int hash) {
257 // Create a copy of the UTF-8 bytes.
259 char* copy = new char[strlen(bytes) + 1]
1027 const char* bytes = reinterpret_cast<const char*>(byteArray.get()); local
1038 const char* bytes = reinterpret_cast<const char*>(charArray.get()); local
1047 const char* bytes = reinterpret_cast<const char*>(xml.unicodeString().getBuffer()); local
    [all...]
  /libcore/luni/src/test/java/tests/api/java/io/
ObjectStreamFieldTest.java 312 byte[] bytes = baos.toByteArray();
313 ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
355 byte[] bytes = baos.toByteArray();
356 ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
402 byte[] bytes = baos.toByteArray();
403 ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
Inet6AddressTest.java     [all...]
  /bootable/bootloader/legacy/arch_msm7k/
nand.c 471 | (516 << 9) /* 516 user data bytes */
472 | (10 << 19) /* 10 parity bytes */
476 /* 0 spare bytes for 16 bit nand or 1 spare bytes for 8 bit */
527 int flash_read_ext(ptentry *ptn, unsigned extra_per_page, unsigned offset, void *data, unsigned bytes)
531 unsigned count = (bytes + 2047 + extra_per_page) / (2048 + extra_per_page);
560 int flash_write(ptentry *ptn, unsigned extra_per_page, const void *data, unsigned bytes)
572 while(bytes > 0) {
573 if(bytes < wsize) {
574 dprintf("flash_write_image: image undersized (%d < %d)\n", bytes, wsize)
    [all...]
  /dalvik/dx/src/com/android/dx/command/dexer/
Main.java 265 public boolean processFileBytes(String name, byte[] bytes) {
266 return Main.processFileBytes(name, bytes);
291 * @param bytes {@code non-null;} contents of the file
294 private static boolean processFileBytes(String name, byte[] bytes) {
313 outputResources.put(fixedName, bytes);
315 return processClass(fixedName, bytes);
317 outputResources.put(fixedName, bytes);
327 * @param bytes {@code non-null;} contents of the file
330 private static boolean processClass(String name, byte[] bytes) {
337 CfTranslator.translate(name, bytes, args.cfOptions)
    [all...]
  /external/blktrace/btt/
trace_complete.c 71 c_iop->bytes_left -= q_iop->t.bytes;
118 if (c_iop->t.bytes == 0)
  /external/bluetooth/bluez/tools/
csr_usb.c 44 static inline int usb_interrupt_read(usb_dev_handle *dev, int ep, char *bytes, int size, int timeout)
46 return usb_bulk_read(dev, ep, bytes, size, timeout);
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JDKDSASigner.java 77 byte[] bytes = publicKey.getEncoded();
79 publicKey = JDKKeyFactory.createPublicKeyFromDERStream(bytes);
188 throw new SignatureException("error decoding signature bytes.");
  /external/bouncycastle/src/main/java/org/bouncycastle/openssl/
PEMUtilities.java 20 byte[] bytes,
145 return c.doFinal(bytes);
178 // For DES2, we must copy first 8 bytes into the last 8 bytes.
  /external/chromium/base/
pickle.h 39 // Initialize a Pickle object with the specified header size in bytes, which
133 // but decided to only fill 10 bytes of that data. Use this function
134 // to trim the buffer so that we don't send 9990 bytes of unused data.
199 // Completes the write operation by padding the data with NULL bytes until it
215 // Moves the iterator by the given number of bytes, making sure it is aligned.
218 static void UpdateIter(void** iter, int bytes) {
219 *iter = static_cast<char*>(*iter) + AlignInt(bytes, sizeof(uint32));
shared_memory_win.cc 105 bool SharedMemory::Map(size_t bytes) {
110 read_only_ ? FILE_MAP_READ : FILE_MAP_ALL_ACCESS, 0, 0, bytes);
  /external/libpng/contrib/gregbook/
wpng.c 704 ulg bytes; local
717 bytes = fread(wpng_info.image_data, 1, image_bytes, wpng_info.infile);
718 if (bytes != image_bytes) {
719 fprintf(stderr, PROGNAME ": expected %lu bytes, got %lu bytes\n",
720 image_bytes, bytes);
733 ulg bytes; local
744 bytes = fread(wpng_info.image_data, 1, rowbytes, wpng_info.infile);
745 if (bytes != rowbytes) {
747 ": expected %lu bytes, got %lu bytes (row %ld)\n", rowbytes
    [all...]
  /external/skia/src/images/
SkFlipPixelRef.cpp 88 const size_t bytes = rect.width() << shift; local
92 memcpy(dstP, srcP, bytes);
  /external/tremolo/Tremolo/
ogg.h 152 long bytes; member in struct:__anon7949
192 extern int ogg_sync_wrote(ogg_sync_state *oy, long bytes);
  /external/webkit/WebCore/platform/mac/
SharedBufferMac.mm 86 - (const void *)bytes
  /external/webkit/WebKit/mac/Misc/
WebNSImageExtras.m 85 write(fd, [data bytes], [data length]);
  /external/webkit/WebKitTools/pywebsocket/example/
echo_client.py 79 def send(self, bytes):
80 return self._ssl.write(bytes)
  /external/webkit/WebKitTools/pywebsocket/test/
mock.py 54 """Get bytes written to this mock."""
70 read_data: bytes that should be returned when read* methods are
107 Callers of read* methods will block if there is no bytes available.
131 def put_bytes(self, bytes):
132 """Put bytes to be read from this mock.
135 bytes: bytes to be read.
138 for byte in bytes:
  /external/wpa_supplicant/
driver_wext.c 234 * @ssid: Buffer for the SSID; must be at least 32 bytes long
358 int bytes; local
362 bytes = strspn(spos, "0123456789abcdefABCDEF");
363 if (!bytes || (bytes & 1))
365 bytes /= 2;
367 data.assoc_info.req_ies = os_malloc(bytes);
371 data.assoc_info.req_ies_len = bytes;
372 hexstr2bin(spos, data.assoc_info.req_ies, bytes);
374 spos += bytes * 2
1471 int bytes; local
1489 int bytes; local
    [all...]

Completed in 717 milliseconds

<<11121314151617181920>>