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

<<31323334353637383940>>

  /external/qemu/
savevm.c 220 int bytes; local
224 bytes = fread(buf, 1, size, fp);
225 } while ((bytes == 0) && ferror(fp) && (errno == EINTR));
226 return bytes;
712 fprintf(stderr, "%s: not enough bytes to load structure\n", __FUNCTION__);
    [all...]
  /external/srec/srec/Recognizer/include/
SR_RecognizerImpl.h 100 #define DEFAULT_WAVEFORM_WINDBACK_FRAMES 50 /* will convert frames to bytes, will not grow */
119 size_t overflow_count; /* indicates the total number of bytes the overflowed */
157 /* skip the first few bytes (moves read pointer forward */
158 ESR_ReturnCode WaveformBuffer_Skip(WaveformBuffer* waveformBuffer, const size_t bytes);
326 * Number of bytes in a frame.
  /external/v8/src/
log.cc 1010 void Logger::HeapSampleItemEvent(const char* type, int number, int bytes) {
1014 msg.Append("heap-sample-item,%s,%d,%d\n", type, number, bytes);
1021 int number, int bytes) {
1025 msg.Append("heap-js-cons-item,%s,%d,%d\n", constructor, number, bytes);
    [all...]
utils.h 202 // Read and return the raw bytes in a file. the size of the buffer is returned
216 // Write size bytes to the file given by filename.
217 // The file is overwritten. Returns the number of bytes written.
219 const byte* bytes,
  /frameworks/base/core/java/android/net/
Uri.java     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_enc/tests/
G726EncTest.c 89 /*16 = 8 input samples of 2 bytes each*/
160 int bytes[500] = {0}; variable
182 bytes[e]=size;
184 printf("__ Allocating %d bytes on address %p, line %d file %s\n", size, p, line, s);
197 printf("__ Deleting %d bytes on address %p, line %d file %s\n", bytes[q],dp, line, s);
    [all...]
  /bootable/recovery/updater/
install.c 412 fprintf(stderr, "%s: failed to allocate %ld bytes for %s\n",
588 ErrorAbort(state, "%s: failed to alloc %d bytes", name, st.st_size+1);
600 ErrorAbort(state, "%s: failed to read %d bytes from %s",
741 // apply_patch_space(bytes)
750 size_t bytes = strtol(bytes_str, &endptr, 10); local
751 if (bytes == 0 && endptr == bytes_str) {
758 return StringValue(strdup(CacheSizeCheck(bytes) ? "" : "t"));
  /external/bison/src/
scan-skel.c 233 /* Size of input buffer in bytes, not including room for EOB
357 YY_BUFFER_STATE skel__scan_bytes (yyconst char *bytes,int len );
    [all...]
  /external/bluetooth/bluez/tools/
lexer.c 187 /* Size of input buffer in bytes, not including room for EOB
294 YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len );
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
CertPathValidatorUtilities.java 370 byte[] bytes = ext.getExtensionValue(oid);
371 if (bytes == null)
376 return getObject(oid, bytes);
    [all...]
  /external/libvpx/vp8/common/ppc/
loopfilter_filters_altivec.asm 518 vpkshss v10, v15, v10 ;# X = saturated down to bytes
538 vpkshss v10, v15, v10 ;# X = saturated down to bytes
558 vpkshss v10, v15, v10 ;# X = saturated down to bytes
640 ;# edge we run into problems. For the loopfilter we require 4 bytes before the mb
641 ;# and 4 after for a total of 8 bytes. Reading 16 bytes inorder to get 4 is a bit
    [all...]
  /external/proguard/src/proguard/classfile/io/
ProgramClassReader.java 246 // Read the UTF-8 bytes.
247 byte[] bytes = new byte[u2length];
248 dataInput.readFully(bytes);
249 utf8Constant.setBytes(bytes);
    [all...]
  /external/tremolo/Tremolo/
bitwiseARM.s 193 AND r10,r3,#3 @ r10= bytes to backtrk to word align
325 AND r3,r6,#3 @ r3 = bytes used in first word
362 AND r3,r6,#3 @ r3 = bytes used in first word
dpen.s 454 @ r1 = bytes
467 CMP r1,r3 @ r3 = post = (bytes < or->length ?
468 MOVLT r3,r1 @ bytes : or->length)
  /external/webkit/WebKit/android/jni/
WebHistory.cpp 163 // Get the actual bytes and the length from the java array.
164 const jbyte* bytes = env->GetByteArrayElements(data, NULL); local
177 // ptr's value. We can't pass &bytes since we have to send bytes to
179 const char* ptr = reinterpret_cast<const char*>(bytes);
181 env->ReleaseByteArrayElements(data, const_cast<jbyte*>(bytes), JNI_ABORT);
  /frameworks/base/core/java/android/pim/vcard/
VCardUtils.java 620 * Guesses the format of input image. Currently just the first few bytes are used.
782 final byte[] bytes = new byte[byteBuffer.remaining()];
783 byteBuffer.get(bytes);
785 return new String(bytes, targetCharset);
  /frameworks/base/core/jni/android/graphics/
Paint.cpp 434 size_t bytes = paint.breakText(text, count << 1, local
436 SkASSERT((bytes & 1) == 0);
443 return bytes >> 1;
  /frameworks/base/core/jni/
android_database_CursorWindow.cpp 538 LOG_WINDOW("Failed allocating %u bytes", len);
541 jbyte * bytes = env->GetByteArrayElements(value, NULL); local
542 window->copyIn(offset, (uint8_t const *)bytes, len);
549 env->ReleaseByteArrayElements(value, bytes, JNI_ABORT);
550 LOG_WINDOW("%d,%d is BLOB with %u bytes @ %d", row, col, len, offset);
572 // GetStringLength return number of chars and one char takes 2 bytes
583 LOG_WINDOW("Failed allocating %u bytes", len);
600 LOG_WINDOW("%d,%d is TEXT with %u bytes @ %d", row, col, len, offset);
  /libcore/luni/src/main/java/java/net/
URI.java 549 byte[] bytes = InetAddress.ipStringToByteArray(host);
551 * The native IP parser may return 4 bytes for addresses like
555 if (bytes.length == 16 || bytes.length == 4 && host.contains(":")) {
    [all...]
  /packages/apps/Settings/src/com/android/settings/
RadioInfo.java 637 String bytes = r.getString(R.string.radioInfo_display_bytes); local
639 sent.setText(txPackets + " " + packets + ", " + txBytes + " " + bytes);
640 received.setText(rxPackets + " " + packets + ", " + rxBytes + " " + bytes);
    [all...]
  /system/core/sh/
arith_lex.c 188 /* Size of input buffer in bytes, not including room for EOB
295 YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len );
    [all...]
  /external/icu4c/test/cintltst/
ncnvtst.c 1856 uint8_t bytes[8]; \/* partial input bytes resulting in no output *\/ member in struct:__anon4202
    [all...]
  /external/webkit/JavaScriptCore/wtf/
FastMalloc.cpp 622 // bytes of allocation, i.e., ~ once every 128KB.
835 // bytes, so the space wasted as a percentage starts falling for
942 // Metadata allocator -- keeps stats about how many bytes allocated
944 static void* MetaDataAlloc(size_t bytes) {
945 void* result = TCMalloc_SystemAlloc(bytes, 0);
947 metadata_system_bytes += bytes;
    [all...]
  /external/libxml2/
xpointer.c     [all...]
  /external/webkit/WebCore/platform/graphics/wince/
GraphicsContextWince.cpp 295 unsigned* pixels = (unsigned*)bmp->bytes();
308 memset(bmp->bytes(), 0xFF, bmp->bitmapInfo().numPixels() * 4);
326 ASSERT(bmp && bmp->bytes() && bmp->is32bit());
327 unsigned* pixels = (unsigned*)bmp->bytes();
383 PixelType* dest = (PixelType*)destBmp->bytes();
384 const PixelType* source = (const PixelType*)sourceBmp->bytes();
559 unsigned* pixels = (unsigned*)m_bitmap->bytes();
    [all...]

Completed in 1122 milliseconds

<<31323334353637383940>>