HomeSort by relevance Sort by last modified time
    Searched defs:bytes (Results 326 - 350 of 479) sorted by null

<<11121314151617181920

  /frameworks/base/opengl/tests/hwc/
hwcTestLib.cpp 546 size_t bytes; member in struct:attrib
593 pixel >>= sizeof(pixel) * BITSPERBYTE - attrib->bytes * BITSPERBYTE;
608 size_t bytes; member in struct:attrib
648 memmove(buf + ((gBuf->getStride() * attrib->bytes) * y)
649 + (attrib->bytes * x), &pixel, attrib->bytes);
    [all...]
  /frameworks/base/services/jni/
com_android_server_location_GpsLocationProvider.cpp 470 jbyte* bytes = (jbyte *)env->GetPrimitiveArrayCritical(data, 0); local
471 sGpsXtraInterface->inject_xtra_data((char *)bytes, length);
472 env->ReleasePrimitiveArrayCritical(data, bytes, JNI_ABORT);
  /packages/apps/Camera/jni/
feature_mos_jni.cpp 406 jfloatArray bytes = env->NewFloatArray(11); local
407 if(bytes != 0)
409 env->SetFloatArrayRegion(bytes, 0, 11, (jfloat*) gTRS);
411 return bytes;
465 jfloatArray bytes = env->NewFloatArray(11); local
466 if(bytes != 0)
468 env->SetFloatArrayRegion(bytes, 0, 11, (jfloat*) gTRS);
470 return bytes;
603 jintArray bytes = env->NewIntArray(imageSize+2); local
604 if (bytes == 0)
654 jbyteArray bytes = env->NewByteArray(imageSize+8); local
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/adapter/
Parser.java 111 // The value read, as bytes
112 public byte[] bytes; field in class:Parser
235 return bytes;
355 * Initializes the parser with an input stream; reads the first 4 bytes (which are always the
494 bytes = new byte[length];
496 bytes[i] = (byte)readByte();
  /system/netd/
BandwidthController.cpp 444 LOGE("Invalid bytes value. 1..max_int64.");
548 LOGE("Invalid bytes value. 1..max_int64.");
600 int BandwidthController::getInterfaceSharedQuota(int64_t *bytes) {
601 return getInterfaceQuota("shared", bytes);
604 int BandwidthController::getInterfaceQuota(const char *costName, int64_t *bytes) {
616 scanRes = fscanf(fp, "%lld", bytes);
617 LOGV("Read quota res=%d bytes=%lld", scanRes, *bytes);
655 int BandwidthController::updateQuota(const char *quotaName, int64_t bytes) {
666 fprintf(fp, "%lld\n", bytes);
931 int64_t packets, bytes; local
    [all...]
  /bionic/libc/kernel/common/linux/
telephony.h 168 unsigned int bytes; member in union:telephony_exception
  /dalvik/dx/src/com/android/dx/command/dexer/
Main.java 253 * @return the bytes of the merged dex file, or null if both the update
389 public boolean processFileBytes(String name, long lastModified, byte[] bytes) {
391 threadPool.execute(new ParallelProcessor(name, lastModified, bytes));
394 return Main.processFileBytes(name, lastModified, bytes);
425 * @param bytes {@code non-null;} contents of the file
428 private static boolean processFileBytes(String name, long lastModified, byte[] bytes) {
449 outputResources.put(fixedName, bytes);
455 return processClass(fixedName, bytes);
458 libraryDexBuffers.add(bytes);
463 outputResources.put(fixedName, bytes);
1187 byte[] bytes; field in class:Main.ParallelProcessor
    [all...]
  /development/ndk/platforms/android-3/include/linux/
telephony.h 168 unsigned int bytes; member in union:telephony_exception
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
String2Test.java 356 assertTrue("Returned incorrect bytes", sbytes[i] == (byte) hw1.charAt(i));
387 "Wrong bytes UTF8: " + Integer.toHexString(i),
398 String bytes = null; local
400 bytes = new String(result, "UTF8");
401 assertTrue("Wrong UTF8 byte length: " + bytes.length() + "("
402 + i + ")", bytes.length() == 1);
405 + Integer.toHexString(bytes.charAt(0)) + " ("
406 + i + ")", bytes.charAt(0) == i);
411 byte[] bytes = new byte[1];
413 bytes[0] = (byte) i
    [all...]
  /external/bluetooth/bluez/audio/
liba2dp.c 223 int opt_name, err, bytes; local
258 bytes = data->link_mtu * PACKET_BUFFER_COUNT;
259 setsockopt(data->stream.fd, SOL_SOCKET, SO_SNDBUF, &bytes,
260 sizeof(bytes));
772 ERR("Too short (%d bytes) IPC packet from bluetoothd", ret);
1240 ERR("%ld bytes left at end of a2dp_write\n", frames_left);
  /external/chromium/base/metrics/
histogram.cc 24 // Static table of checksums for all possible 8 bit bytes.
576 unsigned char bytes[sizeof(Histogram::Sample)]; member in union:base::__anon2239
580 sum = kCrcTable[(sum & 0xff) ^ converter.bytes[i]] ^ (sum >> 8);
584 // and we don't care about edge cases since we have an even number of bytes.
    [all...]
  /external/dhcpcd/
client.c 541 /* IAID is 4 bytes, so if the iface name is 4 bytes
550 /* Name isn't 4 bytes, so use the index */
1540 ssize_t bytes; local
1606 ssize_t bytes; local
    [all...]
dhcpcd.c 641 ssize_t bytes; local
650 bytes = get_raw_packet(iface, ETHERTYPE_IP,
652 if (bytes == 0 || bytes == -1)
654 if (valid_udp_packet(packet, bytes, &from) == -1) {
680 bytes = get_udp_data(&pp, packet);
681 if ((size_t)bytes > sizeof(*dhcp)) {
689 memcpy(dhcp, pp, bytes);
    [all...]
  /external/freetype/src/cff/
cfftypes.h 51 /* off_size :: The size in bytes of object offsets in index. */
54 /* bytes. */
61 /* bytes :: If the index is loaded in memory, its bytes. */
73 FT_Byte* bytes; member in struct:CFF_IndexRec_
  /external/icu4c/common/
triedict.cpp 358 uint32_t size; // Size of the data in bytes
700 virtual void write(uint8_t *bytes, uint32_t &offset, const UVector32 &/*translate*/) {
702 *((uint16_t *)(bytes+offset)) = (fChars.length() & kCountMask)
725 virtual void write(uint8_t *bytes, uint32_t &offset, const UVector32 &translate) {
726 BuildCompactTrieNode::write(bytes, offset, translate);
729 CompactTrieHorizontalEntry *entry = (CompactTrieHorizontalEntry *)(bytes+offset);
765 virtual void write(uint8_t *bytes, uint32_t &offset, const UVector32 &translate) {
766 CompactTrieVerticalNode *node = (CompactTrieVerticalNode *)(bytes+offset);
767 BuildCompactTrieNode::write(bytes, offset, translate);
1109 uint8_t *bytes = (uint8_t *)uprv_malloc(totalSize); local
    [all...]
  /external/icu4c/test/cintltst/
custrtst.c 1444 char bytes[40]; local
    [all...]
ncnvtst.c 1859 uint8_t bytes[8]; \/* partial input bytes resulting in no output *\/ member in struct:__anon6149
    [all...]
  /external/icu4c/test/perf/collationperf/
collperf.cpp 1328 unsigned char bytes[10]; local
    [all...]
  /external/javassist/src/test/test/javassist/convert/
ArrayAccessReplaceTest.java 281 private byte[] bytes; field in class:ArrayAccessReplaceTest.Simple
302 return bytes[pos];
346 bytes[pos] = value;
  /external/kernel-headers/original/linux/
telephony.h 206 * always pass full size frames, any unused bytes will be padded with zeros,
261 unsigned int bytes; member in union:telephony_exception
  /external/llvm/lib/Target/CellSPU/
SPUISelDAGToDAG.cpp 935 unsigned bytes = unsigned(CN->getZExtValue()) >> 3; local
994 unsigned bytes = unsigned(CN->getZExtValue()) >> 3; local
1084 unsigned bytes = unsigned(CN->getZExtValue()) >> 3; local
    [all...]
  /external/mksh/src/
histrap.c 671 * Bytes 1, 2:
676 * <command byte><command number(4 bytes)><bytes><null>
769 sn1, /* bytes 1 to 4 of a line no */
774 hist_count_lines(unsigned char *base, int bytes)
779 while (bytes--) {
855 * return the pointer and the number of bytes left
858 hist_skip_back(unsigned char *base, int *bytes, int no)
863 for (ep = base + *bytes; --ep > base; ) {
874 *bytes = *bytes - ((char *)ep - (char *)base)
960 int bytes; local
    [all...]
  /external/qemu/
savevm.c 118 /* Padding to get up to 60 bytes (ethernet min packet size, minus FCS). */
227 int bytes; local
231 bytes = fread(buf, 1, size, fp);
232 } while ((bytes == 0) && ferror(fp) && (errno == EINTR));
233 return bytes;
748 fprintf(stderr, "%s: not enough bytes to load structure\n", __FUNCTION__);
766 uint8_t *bytes = (uint8_t*) &v; local
767 qemu_put_buffer(f, bytes, sizeof(float));
773 uint8_t bytes[sizeof(float)]; local
774 qemu_get_buffer(f, bytes, sizeof(float))
    [all...]
  /external/skia/src/images/
SkImageDecoder_libpng.cpp 102 size_t bytes = sk_stream->read(data, length); local
103 if (bytes != length) {
244 * byte into separate bytes (useful for paletted and grayscale images). */
556 // now check that if we are 4-bytes per pixel, we also don't overflow
581 We hit some images (e.g. fruit_.png) who contain bytes that are == colortable_count
    [all...]
  /external/webkit/Source/WebCore/plugins/
PluginView.cpp 1090 const char* bytes = buffer.data(); local
1171 const char* bytes = buffer.data(); local
    [all...]

Completed in 1786 milliseconds

<<11121314151617181920