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

<<31323334353637383940>>

  /external/webkit/WebCore/loader/
DocumentThreadableLoader.cpp 334 const char* bytes = static_cast<const char*>(data.data()); local
336 didReceiveData(0, bytes, len);
  /external/webkit/WebCore/platform/network/mac/
ResourceRequestMac.mm 87 m_httpBody = FormData::create([bodyData bytes], [bodyData length]);
  /frameworks/base/media/libstagefright/
AudioSource.cpp 177 uint8_t *data, size_t bytes) {
182 int32_t stopFrame = startFrame + bytes / sizeof(int16_t);
  /frameworks/base/telephony/java/android/telephony/
PhoneNumberUtils.java 716 * @param bytes the data buffer
718 * @param length is the number of bytes including TOA byte
727 calledPartyBCDToString (byte[] bytes, int offset, int length) {
736 if ((bytes[offset] & 0xf0) == (TOA_International & 0xf0)) {
741 ret, bytes, offset + 1, length - 1);
828 StringBuilder sb, byte [] bytes, int offset, int length) {
833 c = bcdToChar((byte)(bytes[i] & 0xf));
847 b = (byte)((bytes[i] >> 4) & 0xf);
870 calledPartyBCDFragmentToString(byte [] bytes, int offset, int length) {
873 internalCalledPartyBCDFragmentToString(ret, bytes, offset, length)
    [all...]
  /hardware/msm7k/libaudio-qsd8k/
AudioHardware.h 254 virtual ssize_t write(const void* buffer, size_t bytes);
296 virtual ssize_t read(void* buffer, ssize_t bytes);
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
HandshakeProtocol.java 252 * @param bytes
254 public abstract void unwrap(byte[] bytes);
258 * @param bytes
260 public abstract void unwrapSSLv2(byte[] bytes);
  /libcore/luni/src/main/native/
java_net_InetAddress.cpp 163 * @param javaAddress: a byte array containing the raw IP address bytes. Must be
164 * 4 or 16 bytes long.
176 // Convert the raw address bytes into a socket address structure.
232 // Convert the String to UTF-8 bytes.
238 LocalArray<INET6_ADDRSTRLEN> bytes(byteCount + 1);
239 char* ipString = &bytes[0];
  /packages/apps/Email/src/com/android/email/mail/transport/
Rfc822Output.java 351 byte[] bytes = text.getBytes("UTF-8");
353 out.write(Base64.encode(bytes, Base64.CRLF));
  /prebuilt/common/commons-compress/
commons-compress-1.0.jar 
  /external/bison/lib/
vbitset.c 345 unsigned int bytes; local
347 bytes = sizeof (bitset_word) * VBITSET_SIZE (dst);
349 memset (dstp, -1, bytes);
358 unsigned int bytes; local
360 bytes = sizeof (bitset_word) * VBITSET_SIZE (dst);
362 memset (dstp, 0, bytes);
  /external/v8/src/
spaces.h 50 // bytes. The first word of a page is an opaque page header that has the
52 // have the allocation top address of this page. The next 248 bytes are
53 // remembered sets. Heap objects are aligned to the pointer size (4 bytes). A
93 // A page normally has 8K bytes. Large object pages may be larger. A page
96 // bytes are used as remembered set, and the rest of the page is the object
103 // 256th byte (8K/32). Bytes 0 to 255 do not need the remembered set, so that
108 // only 128 bytes for the RSet, and only get two bytes free in the RSet's RSet.
215 // Page size in bytes. This must be a multiple of the OS page size.
221 // The offset of the remembered set in a page, in addition to the empty bytes
1058 int bytes() const { return bytes_; } function in class:v8::internal::BASE_EMBEDDED
    [all...]
spaces.cc 777 // All the bytes in the space are 'available'. We will rediscover
778 // allocated and wasted bytes during GC.
822 // of forwarding addresses is as an offset in terms of live bytes, so we
    [all...]
  /external/zlib/contrib/pascal/
zlibpas.pas 29 avail_in: Integer; (* number of bytes available at next_in *)
30 total_in: LongInt; (* total nb of input bytes read so far *)
34 total_out: LongInt; (* total nb of bytes output so far *)
  /frameworks/base/media/libmediaplayerservice/
StagefrightRecorder.cpp 273 size_t num_bytes = s->bytes();
368 status_t StagefrightRecorder::setParamMaxFileSizeBytes(int64_t bytes) {
369 LOGV("setParamMaxFileSizeBytes: %lld bytes", bytes);
370 if (bytes <= 1024) { // XXX: 1 kB
371 LOGE("Max file size is too small: %lld bytes", bytes);
374 mMaxFileSizeBytes = bytes;
    [all...]
  /libcore/luni/src/main/java/java/io/
File.java 563 String bytes; local
574 bytes = path;
586 bytes = linkPath.substring(0, linkSize) +
591 return bytes;
593 linkPath = resolveLink(bytes, inPlace ? i : bytes.length(), true);
    [all...]
  /external/elfcopy/
dwarf.c 144 we are returning only 4 bytes of data. */
237 Returns the number of bytes read. */
2331 unsigned long bytes; local
2612 unsigned long bytes = section->size; local
2773 unsigned long bytes; local
    [all...]
  /device/samsung/crespo/libaudio2/
AudioHardware.cpp 973 ssize_t AudioHardware::AudioStreamOutALSA::write(const void* buffer, size_t bytes)
975 // LOGV("AudioStreamOutALSA::write(%p, %u)", buffer, bytes);
1030 ret = pcm_write(mPcm,(void*) p, bytes);
1034 return bytes;
1044 usleep((((bytes * 1000) / frameSize()) * 1000) / sampleRate());
    [all...]
  /external/chromium/third_party/icu/source/test/cintltst/
custrtrn.c 864 static const uint8_t bytes[]={ 0xe0, 0xa5, 0x9c, 0 }; local
915 static const uint8_t bytes[]={ local
    [all...]
  /external/dbus/test/
decode-gcov.c 56 size_t bytes)
61 for (i = bytes - 1; (size_t) i > (sizeof (*dest) - 1); i--)
62 if (source[i] & ((size_t) i == (bytes - 1) ? 127 : 255 ))
66 value = value * 256 + (source[i] & ((size_t)i == (bytes - 1) ? 127 : 255));
68 if ((source[bytes - 1] & 128) && (value > 0))
78 size_t bytes)
83 for (i = bytes - 1; (size_t) i > (sizeof (*dest) - 1); i--)
84 if (source[i] & ((size_t) i == (bytes - 1) ? 127 : 255 ))
88 value = value * 256 + (source[i] & ((size_t)i == (bytes - 1) ? 127 : 255));
90 if ((source[bytes - 1] & 128) && (value > 0)
    [all...]
  /external/qemu/audio/
audio.c 905 dolog ("Could not allocate soft capture voice (%zu bytes)\n",
1185 int bytes; local
1198 bytes = sw->hw->pcm_ops->write (sw, buf, size); local
1200 return bytes;
1205 int bytes; local
1218 bytes = sw->hw->pcm_ops->read (sw, buf, size); local
1220 return bytes;
1385 int bytes = to_write << hw->info.shift; local
    [all...]
  /external/webkit/WebKitTools/android/flex-2.5.4a/
flex.skl 162 /* Size of input buffer in bytes, not including room for EOB
254 YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len ));
1318 YY_BUFFER_STATE yy_scan_bytes( yyconst char *bytes, int len )
1320 YY_BUFFER_STATE yy_scan_bytes( bytes, len )
1321 yyconst char *bytes;
1337 buf[i] = bytes[i];
    [all...]
  /prebuilt/sdk/tools/lib/
dx.jar 
  /external/dropbear/libtomcrypt/
crypt.tex 288 \hline BSWAP(x) & {\bf unsigned long} x & Swap bytes \\
343 printf("RSA exported key takes %d bytes\n", x);
351 In the above example if the size of the RSA public key was more than 1024 bytes this function would return an error code
353 \textit{x} so that the calling application will know how many bytes were used.
421 The XXX\_setup() routine will setup the cipher to be used with a given number of rounds and a given key length (in bytes).
484 This should indicate a keysize of sixteen bytes is suggested by storing 16 in \textit{keysize.}
513 8, /* key is 8 bytes (64-bits) long */
589 are the minimum and maximum key sizes in bytes. The \textit{block\_length} member is the block size of the cipher
590 in bytes. As a good rule of thumb it is assumed that the cipher supports
652 Note that for \textit{DES} and \textit{3DES} they use 8 and 24 byte keys but only 7 and 21 [respectively] bytes of the keys are i
    [all...]
  /device/samsung/crespo/alsa-lib/src/pcm/
pcm_file.c 155 static void snd_pcm_file_write_bytes(snd_pcm_t *pcm, size_t bytes)
158 assert(bytes <= file->wbuf_used_bytes);
166 while (bytes > 0) {
168 size_t n = bytes;
177 bytes -= err;
  /external/elfutils/src/
ldlex.c 170 /* Size of input buffer in bytes, not including room for EOB
259 YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len ));
    [all...]

Completed in 544 milliseconds

<<31323334353637383940>>