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

<<21222324252627282930>>

  /external/chromium/net/third_party/nss/ssl/
ssl3ext.c 69 PRUint32 bytes);
79 * Write bytes. Using this function means the SECItem structure
84 ssl3_AppendToItem(SECItem *item, const unsigned char *buf, PRUint32 bytes)
86 if (bytes > item->len)
89 PORT_Memcpy(item->data, buf, bytes);
90 item->data += bytes;
91 item->len -= bytes;
361 /* Empty extension length = extension_type (2-bytes) +
362 * length(extension_data) (2-bytes)
    [all...]
sslsnce.c 184 PRUint8 bytes[512]; member in struct:encKeyCacheEntryStr
    [all...]
  /hardware/qcom/media/mm-video/vidc/venc/src/
omx_video_base.cpp     [all...]
  /libcore/luni/src/main/native/
NativeCrypto.cpp     [all...]
  /external/bluetooth/glib/glib/
gfileutils.c 503 gsize bytes; local
515 bytes = fread (buf, 1, sizeof (buf), f);
518 while ((total_bytes + bytes + 1) > total_allocated)
523 total_allocated = MIN (bytes + 1, sizeof (buf));
532 _("Could not allocate %lu bytes to read file \"%s\""),
554 memcpy (str + total_bytes, buf, bytes);
556 if (total_bytes + bytes < total_bytes)
567 total_bytes += bytes;
620 _("Could not allocate %lu bytes to read file \"%s\""),
803 * @length: location to store length in bytes of the contents, or %NUL
    [all...]
gtestutils.c 1472 gssize bytes; local
    [all...]
  /external/blktrace/
blkparse_fmt.c 67 else if (t->bytes)
213 fprintf(ofp, strcat(format, "u"), t->bytes);
349 fprintf(ofp, "%u ", t->bytes);
  /external/chromium/base/
string_util.cc 615 // UTF-8 sequence of bytes with the given length. A character satisfies
670 // incremented when inside a multi-byte char to indicate how many bytes
887 DataUnits GetByteDisplayUnits(int64 bytes) {
889 // in unit U when kUnitThresholds[U] <= bytes < kUnitThresholds[U+1].
898 if (bytes < 0) {
899 NOTREACHED() << "Negative bytes value";
905 if (bytes >= kUnitThresholds[unit_index])
929 std::wstring FormatBytesInternal(int64 bytes,
933 if (bytes < 0) {
934 NOTREACHED() << "Negative bytes value"
    [all...]
  /external/chromium/net/url_request/
url_request.cc 83 void URLRequest::AppendBytesToUpload(const char* bytes, int bytes_len) {
84 DCHECK(bytes_len > 0 && bytes);
87 upload_->AppendBytes(bytes, bytes_len);
341 // Once the request fails or is cancelled, read will just return 0 bytes
  /external/chromium/third_party/icu/source/test/intltest/
strtest.cpp 395 virtual void Append(const char *bytes, int32_t n) {
396 if(fOutbuf != bytes) {
397 memcpy(fOutbuf, bytes, n);
  /external/icu4c/test/intltest/
strtest.cpp 395 virtual void Append(const char *bytes, int32_t n) {
396 if(fOutbuf != bytes) {
397 memcpy(fOutbuf, bytes, n);
  /external/libffi/src/s390/
ffi.c 180 int gpr_off = ecif->cif->bytes;
485 cif->bytes = ROUND_SIZE (n_ov * sizeof (long)) + struct_size;
525 ffi_call_SYSV (cif->bytes, &ecif, ffi_prep_args,
  /external/libvpx/vp8/decoder/
onyxd_if.c 447 int bytes = 0;
455 bytes += pbi->dr[i].size;
468 pbi->common.bitrate = 80000.00 * bytes / time_diff ;
  /external/openssl/ssl/
ssltest.c 264 int doit_biopair(SSL *s_ssl,SSL *c_ssl,long bytes,clock_t *s_time,clock_t *c_time);
265 int doit(SSL *s_ssl,SSL *c_ssl,long bytes);
280 fprintf(stderr," -bytes <val> - number of bytes to swap between client/server\n");
478 long bytes=256L; local
594 else if (strcmp(*argv,"-bytes") == 0)
597 bytes= atol(*(++argv));
598 if (bytes == 0L) bytes=1L;
600 if (argv[0][i-1] == 'k') bytes*=1024L
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/audio/ums/
SDL_umsaudio.c 68 static UMSAudioDevice_ReturnCode UADSetDMABufferSize(_THIS, long bytes, long* bytes_ret );
454 static UMSAudioDevice_ReturnCode UADSetDMABufferSize(_THIS, long bytes, long* bytes_ret )
463 bytes,
  /external/v8/test/mjsunit/
unicode-test.js     [all...]
  /frameworks/base/tests/CoreTests/android/core/
TestWebServer.java 433 * @return number of bytes read
471 * @return number of bytes read
495 * @return number of bytes read
565 * @return number of bytes read
603 * @return number of bytes read
624 * @return number of bytes read
757 // Print bytes to log and output stream
758 void psWrite(PrintStream ps, byte[] bytes, int len) throws IOException {
759 log(new String(bytes));
760 ps.write(bytes, 0, len)
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
StringBufferTest.java 101 byte[] bytes = buffer.toString().getBytes("GB18030");
102 for (int i = 5; i < bytes.length; i++) {
103 assertEquals(0, bytes[i]);
  /libcore/luni/src/test/java/tests/java/security/
SecureClassLoaderTest.java 273 public Class define(String name, byte[] bytes) {
274 return defineClass(name, bytes, 0, bytes.length,
  /external/sonivox/jet_tools/JetCreator/
midifile.py 265 bytes = []
267 bytes.append(ReadByte(stream))
268 return bytes
281 def WriteBytes (stream, bytes):
282 for byte in bytes:
286 bytes = [value & 0x7f]
289 bytes.append((value & 0x7f) | 0x80)
291 bytes.reverse()
292 WriteBytes(stream, bytes)
987 bytes = stream.read(struct.calcsize(SMF_TRACK_HEADER_FMT))
    [all...]
  /bionic/libc/kernel/common/linux/
telephony.h 168 unsigned int bytes; member in union:telephony_exception
  /build/tools/signapk/
SignApk.java 151 byte[] bytes = new byte[(int) file.length()];
152 input.read(bytes);
154 KeySpec spec = decryptPrivateKey(bytes, file);
156 spec = new PKCS8EncodedKeySpec(bytes);
296 // if the length of the signature file is a multiple of 1024 bytes.
331 // end-of-central-directory record will be 22 bytes long, so
332 // we expect to find the EOCD marker 22 bytes from the end.
358 // signature starts this many bytes from the end of the file
362 // Why the 0xff bytes? In a zip file with no archive comment,
363 // bytes [-6:-2] of the file are the little-endian offset fro
    [all...]
  /dalvik/vm/arch/x86-atom/
Call386ABI.S 94 * Update and align (16 bytes) stack pointer
106 shl $2, %ecx # %ecx<- argsize in bytes
154 * If a native function returns a result smaller than 8-bytes
155 * then higher bytes may contain garbage.
157 * We zero higher bytes instead of allowing the garbage to go through.
  /dalvik/vm/mterp/armv5te/
entry.S 63 ldr r1, [r0, #offGlue_entryPoint] @ enum is 4 bytes in aapcs-EABI
  /development/ndk/platforms/android-3/include/linux/
telephony.h 168 unsigned int bytes; member in union:telephony_exception

Completed in 941 milliseconds

<<21222324252627282930>>