HomeSort by relevance Sort by last modified time
    Searched defs:bytes (Results 451 - 475 of 817) sorted by null

<<11121314151617181920>>

  /packages/apps/Exchange/exchange2/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();
  /packages/apps/Gallery2/jni_mosaic/
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/LegacyCamera/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...]
  /system/netd/
BandwidthController.cpp 508 ALOGE("Invalid bytes value. 1..max_int64.");
612 ALOGE("Invalid bytes value. 1..max_int64.");
670 int BandwidthController::getInterfaceSharedQuota(int64_t *bytes) {
671 return getInterfaceQuota("shared", bytes);
674 int BandwidthController::getInterfaceQuota(const char *costName, int64_t *bytes) {
686 scanRes = fscanf(fp, "%lld", bytes);
687 ALOGV("Read quota res=%d bytes=%lld", scanRes, *bytes);
725 int BandwidthController::updateQuota(const char *quotaName, int64_t bytes) {
736 fprintf(fp, "%lld\n", bytes);
1002 int64_t packets, bytes; local
    [all...]
  /prebuilts/devtools/tools/lib/
jobb.jar 
  /bionic/libc/kernel/common/linux/
telephony.h 187 unsigned int bytes; member in union:telephony_exception
  /dalvik/dx/src/com/android/dx/command/dexer/
Main.java 256 * @return the bytes of the merged dex file, or null if both the update
393 public boolean processFileBytes(String name, long lastModified, byte[] bytes) {
395 threadPool.execute(new ParallelProcessor(name, lastModified, bytes));
398 return Main.processFileBytes(name, lastModified, bytes);
429 * @param bytes {@code non-null;} contents of the file
432 private static boolean processFileBytes(String name, long lastModified, byte[] bytes) {
453 outputResources.put(fixedName, bytes);
459 return processClass(fixedName, bytes);
462 libraryDexBuffers.add(bytes);
467 outputResources.put(fixedName, bytes);
1198 byte[] bytes; field in class:Main.ParallelProcessor
    [all...]
  /dalvik/vm/compiler/codegen/x86/libenc/
encoder.h 44 // size of general-purpose value on the stack in bytes
46 // size of floating-point value on the stack in bytes
66 // size of general-purpose value on the stack in bytes
68 // size of general-purpose value on the stack in bytes
222 unsigned char bytes[8]; member in union:Imm_Opnd::__anon829
225 unsigned char bytes[4];
695 // Add 1-7 bytes padding, with as few instructions as possible,
  /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/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::__anon3674
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/
dhcpcd.c 667 ssize_t bytes; local
676 bytes = get_raw_packet(iface, ETHERTYPE_IP,
678 if (bytes == 0 || bytes == -1)
680 if (valid_udp_packet(packet, bytes, &from, partialcsum) == -1) {
706 bytes = get_udp_data(&pp, packet);
707 if ((size_t)bytes > sizeof(*dhcp)) {
715 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/test/cintltst/
custrtst.c 1444 char bytes[40]; local
    [all...]
ncnvtst.c 1858 uint8_t bytes[8]; \/* partial input bytes resulting in no output *\/ member in struct:__anon8836
    [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/libmtp/src/
libusb-glue.c 403 /* Check if descriptor length is at least 10 bytes */
714 printf(" IN endpoint maxpacket: %d bytes\n", ptp_usb->inep_maxpacket);
715 printf(" OUT endpoint maxpacket: %d bytes\n", ptp_usb->outep_maxpacket);
791 * 1. Send the command (0x0c bytes) if headers are split, else, send
792 * command plus sizeof(endpoint) - 0x0c bytes.
795 * 3. REPEAT send 0x10000 byte chunks UNTIL remaining bytes < 0x10000
797 * 4. Send remaining bytes MOD sizeof(endpoint)
798 * 5. Send remaining bytes. If this happens to be exactly sizeof(endpoint)
819 unsigned char *bytes; local
823 bytes = malloc(CONTEXT_BLOCK_SIZE)
942 unsigned char *bytes; local
    [all...]
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
userial_linux.c 172 long bytes; member in struct:__anon10154
189 t->bytes =
209 if (t->bytes)
210 ALOGD( "%s:%s, bytes=%ld, lapse=%ld (%d.%02d kbps) (bus data rate %d.%02d kbps) overhead %d(%d percent)\n",
212 t->label, t->bytes, t->lapse,
213 (int)(8 * t->bytes / t->lapse), (int)(800 * t->bytes / (t->lapse)) % 100,
214 (int)(9 * (t->bytes + t->count * t->overhead) / t->lapse), (int)(900 * (t->bytes + t->count * t->overhead) / (t->lapse)) % 100,
215 (int)(t->count * t->overhead), (int)(t->count * t->overhead * 100 / t->bytes)
    [all...]
  /external/libogg/src/
framing.c 307 int bytes = 0, lacing_vals, i; local
312 for (i = 0; i < count; ++i) bytes += (int)iov[i].iov_len;
313 lacing_vals=bytes/255+1;
328 if(_os_body_expand(os,bytes) || _os_lacing_expand(os,lacing_vals))
346 os->lacing_vals[os->lacing_fill+i]=bytes%255;
365 iov.iov_len = op->bytes;
376 int bytes=0; local
480 bytes+=os->header[i+27]=(unsigned char)(os->lacing_vals[i]&0xff);
486 og->body_len=bytes;
493 os->body_returned+=bytes;
639 long bytes=oy->fill-oy->returned; local
693 long bytes; local
960 int bytes=size; local
    [all...]
  /external/libsepol/src/
services.c 934 int hidden next_entry(void *buf, struct policy_file *fp, size_t bytes)
940 nread = fread(buf, bytes, 1, fp->fp);
946 if (bytes > fp->len)
948 memcpy(buf, fp->data, bytes);
949 fp->data += bytes;
950 fp->len -= bytes;
961 size_t bytes = size * n; local
967 if (bytes > fp->len) {
972 memcpy(fp->data, ptr, bytes);
973 fp->data += bytes;
    [all...]
  /external/libvorbis/lib/
vorbisfile.c 72 long bytes=(vf->callbacks.read_func)(buffer,1,READSIZE,vf->datasource); local
73 if(bytes>0)ogg_sync_wrote(&vf->oy,bytes);
74 if(bytes==0 && errno)return(-1);
75 return(bytes);
103 n) search for a new page beginning for n bytes
118 /* skipped n bytes */
718 vf->bittrack+=op_ptr->bytes*8;
776 /* bitrate tracking; add the header's bytes here, the body bytes
    [all...]
  /external/mksh/src/
histrap.c 686 * Bytes 1, 2:
690 * <command byte><command number(4 octets, big endian)><bytes><NUL>
831 histload(Source *s, unsigned char *base, size_t bytes)
837 /* !bytes check as some systems (older FreeBSDs) have buggy memchr */
838 if (!bytes || (cp = memchr(base, COMMAND, bytes)) == NULL)
841 bytes -= ++cp - base;
844 if (bytes < 5 || (cp = memchr(base + 4, '\0', bytes - 4)) == NULL)
866 bytes -= ++cp - base
884 size_t bytes; local
    [all...]
  /external/openssh/
clientloop.c 972 int bytes = 0; local
1174 bytes++;
    [all...]

Completed in 824 milliseconds

<<11121314151617181920>>