HomeSort by relevance Sort by last modified time
    Searched full:bytes (Results 851 - 875 of 16566) sorted by null

<<31323334353637383940>>

  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
intnum.h 108 * \param size number of bytes read from ptr (output)
109 * \return Newly allocated intnum. Number of bytes read returned into
120 * \param srcsize source buffer size (in bytes)
239 * \param ptr pointer to storage for size bytes of output
240 * \param destsize destination size (in bytes)
278 * \param ptr pointer to storage for output bytes
280 * \return Number of bytes generated.
286 /** Calculate number of bytes LEB128-encoded form of #yasm_intnum will take.
289 * \return Number of bytes.
296 * \param ptr pointer to storage for output bytes
    [all...]
  /external/elfutils/tests/
run-show-ciefde.sh 37 CIE[0]: bytes = 0c 04 04 88 01 00 00
39 FDE[0]: bytes = 18 00 00 00 18 00 00 00 2c 84 04 08 29 00 00 00 41 0e 08 85 02 42 0d 05 41 83 03 00
52 CIE[0]: bytes = 0c 04 04 88 01
57 CIE[1]: bytes = 0c 04 04 88 01 00 00
62 CIE[2]: bytes = 0c 04 04 88 01 00 00
67 CIE[3]: bytes = 0c 04 04 88 01
72 CIE[4]: bytes = 0c 04 04 88 01 00 00
74 FDE[0]: bytes = 2c 00 00 00 1c 00 00 00 fc 93 04 08 9a 00 00 00 41 0e 08 85 02 42 0d 05 53 2e 08 50 2e 10 48 2e 00 58 2e 10 62 2e 00 63 2e 10 45 2e 00 00 00 00
78 FDE[1]: bytes = 18 00 00 00 4c 00 00 00 98 94 04 08 31 00 00 00 41 0e 08 85 02 42 0d 05 4c 2e 10 00
82 FDE[2]: bytes = 18 00 00 00 18 00 00 00 d4 94 04 08 17 00 00 00 41 0e 08 85 02 42 0d 05 41 83 03 0
    [all...]
  /external/smack/src/org/xbill/DNS/
Address.java 187 * Convert a string containing an IP address to an array of 4 or 16 bytes.
298 byte [] bytes;
299 bytes = toByteArray(addr, IPv4);
300 if (bytes != null)
301 return InetAddress.getByAddress(addr, bytes);
302 bytes = toByteArray(addr, IPv6);
303 if (bytes != null)
304 return InetAddress.getByAddress(addr, bytes);
321 byte [] bytes;
322 bytes = toByteArray(addr, family)
    [all...]
  /libcore/luni/src/main/java/java/io/
InputStream.java 24 * A readable source of bytes.
65 * Returns an estimated number of bytes that can be read or skipped without blocking for more
77 * conservative estimate and may be significantly smaller than the actual number of bytes
83 * <p>Thirdly, the fact that a given number of bytes is "available" does not guarantee that a
84 * read or skip will actually read or skip that many bytes: they may read or skip fewer.
95 * Subclasses should override this method if they are able to indicate the number of bytes
98 * @return the estimated number of bytes available
118 * indicates how many bytes can be read before the mark is invalidated.
126 * the number of bytes that can be read from this stream before
166 * Reads up to {@code byteCount} bytes from this stream and stores them i
    [all...]
  /prebuilts/devtools/tools/lib/
asm-4.0.jar 
  /prebuilts/misc/common/asm/
asm-4.0.jar 
  /prebuilts/sdk/tools/lib/
asm-4.0.jar 
  /prebuilts/tools/common/asm-tools/
asm-4.0.jar 
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm/4.0/
asm-4.0.jar 
  /external/libogg/src/
bitwise.c 60 long bytes=bits>>3; local
62 bits-=bytes*8;
63 b->ptr=b->buffer+bytes;
65 b->endbyte=bytes;
71 long bytes=bits>>3; local
73 bits-=bytes*8;
74 b->ptr=b->buffer+bytes;
76 b->endbyte=bytes;
184 long bytes=bits/8; local
185 bits-=bytes*8
512 long bytes,i; local
547 long bytes,i; local
583 long bytes,i; local
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
BufferedInputStreamTest.java 75 // Close underlying FileInputStream, all but 1 buffered bytes should
117 assertTrue("Returned incorrect number of available bytes", is
208 byte[] bytes = new byte[256];
210 bytes[i] = (byte) i;
213 new ByteArrayInputStream(bytes), 12);
218 assertTrue("Wrong bytes", in.read() == 6 && in.read() == 7);
220 in = new BufferedInputStream(new ByteArrayInputStream(bytes), 12);
225 assertTrue("Wrong bytes 2", in.read() == 6 && in.read() == 7);
230 bytes = new byte[3];
231 int result = buf.read(bytes);
    [all...]
  /external/bison/lib/
xmalloc.c 36 /* Allocate N bytes of memory dynamically, with error checking. */
47 /* Change the size of an allocated block of memory P to N bytes,
67 /* If P is null, allocate a block of at least *PN bytes; otherwise,
68 reallocate P so that it contains more than *PN bytes. *PN must be
79 /* Allocate S bytes of zeroed memory dynamically, with error checking.
89 /* Allocate zeroed memory for N elements of S bytes, with error
  /external/chromium/crypto/third_party/nss/
blapit.h 65 #define SHA256_LENGTH 32 /* bytes */
66 #define SHA384_LENGTH 48 /* bytes */
67 #define SHA512_LENGTH 64 /* bytes */
74 #define SHA256_BLOCK_LENGTH 64 /* bytes */
75 #define SHA384_BLOCK_LENGTH 128 /* bytes */
76 #define SHA512_BLOCK_LENGTH 128 /* bytes */
  /external/chromium/net/base/
ip_endpoint.cc 89 const char* bytes = reinterpret_cast<const char*>(&addr->sin_addr); local
90 address_.assign(&bytes[0], &bytes[kIPv4AddressSize]);
97 const char* bytes = reinterpret_cast<const char*>(&addr->sin6_addr); local
98 address_.assign(&bytes[0], &bytes[kIPv6AddressSize]);
  /external/chromium-trace/trace-viewer/src/tcmalloc/
tcmalloc_instance_view.js 64 var bytes = snapshot.heap_.children[traceNames[j]].currentBytes;
65 rowData.push(bytes);
68 [Math.round(snapshot.ts / 1000), bytes / 1024 / 1024]);
94 * Returns a human readable string for a size in bytes.
96 getByteString_: function(bytes) {
97 var mb = bytes / 1024 / 1024;
  /external/chromium_org/android_webview/native/
input_stream_impl.cc 31 // Maximum number of bytes to be read in a single read.
58 int bytes = Java_InputStream_available(env, jobject_.obj()); local
61 *bytes_available = bytes;
67 int bytes = Java_InputStream_skip(env, jobject_.obj(), n); local
70 if (bytes > n)
72 *bytes_skipped = bytes;
  /external/chromium_org/crypto/third_party/nss/
chromium-blapit.h 65 #define SHA256_LENGTH 32 /* bytes */
66 #define SHA384_LENGTH 48 /* bytes */
67 #define SHA512_LENGTH 64 /* bytes */
74 #define SHA256_BLOCK_LENGTH 64 /* bytes */
75 #define SHA384_BLOCK_LENGTH 128 /* bytes */
76 #define SHA512_BLOCK_LENGTH 128 /* bytes */
  /external/chromium_org/net/quic/congestion_control/
send_algorithm_interface.h 27 SentPacket(QuicByteCount bytes,
30 : bytes_sent_(bytes),
81 // Inform that we sent x bytes to the wire, and if that was a retransmission.
88 QuicByteCount bytes,
106 // What's the current estimated bandwidth in bytes per second.
118 // Returns the size of the current congestion window in bytes. Note, this is
  /external/chromium_org/net/quic/crypto/
quic_encrypter.h 26 // Sets the fixed initial bytes of the nonce. Returns true on success,
45 // nonce. |nonce| must be |8+GetNoncePrefixSize()| bytes long and |output|
47 // |GetCiphertextSize(plaintext.size()| bytes long.
61 // GetKeySize() and GetNoncePrefixSize() tell the HKDF class how many bytes
67 // Returns the size in bytes of a key for the algorithm.
69 // Returns the size in bytes of the fixed initial part of the nonce.
  /external/chromium_org/net/socket/
socket.h 20 // Reads data, up to |buf_len| bytes, from the socket. The number of bytes
34 // Writes data, up to |buf_len| bytes, to the socket. Note: data may be
35 // written partially. The number of bytes written is returned, or an error
49 // Set the receive buffer size (in bytes) for the socket.
54 // Set the send buffer size (in bytes) for the socket.
  /external/chromium_org/sync/protocol/
unique_position.proto 17 // A UniquePosition is a string of bytes.
23 // Prior to the suffix is a series of arbitrary bytes of arbitrary length.
51 // The uncompressed string of bytes representing the position.
54 optional bytes value = 1;
64 optional bytes compressed_value = 2;
79 optional bytes custom_compressed_v1 = 4;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
util.py 172 with the masking bytes given to the constructor repeatedly. This object
173 remembers the position in the masking bytes the last mask method call
234 def compress(self, bytes):
235 compressed_bytes = self._compress.compress(bytes)
236 self._logger.debug('Compress input %r', bytes)
240 def compress_and_flush(self, bytes):
241 compressed_bytes = self._compress.compress(bytes)
243 self._logger.debug('Compress input %r', bytes)
247 def compress_and_finish(self, bytes):
248 compressed_bytes = self._compress.compress(bytes)
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
log_reader.h 28 // of bytes dropped due to the corruption.
29 virtual void Corruption(size_t bytes, const Status& status) = 0;
95 // Reports dropped bytes to the reporter.
96 // buffer_ must be updated to remove the dropped bytes prior to invocation.
97 void ReportCorruption(size_t bytes, const char* reason);
98 void ReportDrop(size_t bytes, const Status& reason);
  /external/chromium_org/third_party/skia/include/pipe/
SkGPipe.h 83 * If bytes == 0, then the writer has finished.
85 * bytes will always be a multiple of 4.
87 virtual void notifyWritten(size_t bytes) = 0;
142 * Return the amount of bytes being used for recording. Note that this
153 * @param bytesToFree minimum number of bytes that should be attempted to
155 * @return number of bytes actually freed.
  /external/chromium_org/third_party/sqlite/src/tool/
space_used.tcl 29 pri_unused int, -- Number of unused bytes on primary pages
30 ovfl_unused int -- Number of unused bytes on overflow pages
94 puts -nonewline "-- Total unused bytes on primary pages: $total_unused_primary"
97 puts " (avg $upp bytes/page)"
101 puts -nonewline "-- Total unused bytes on overflow pages: $total_unused_ovfl"
104 puts " (avg $upp bytes/page)"

Completed in 1610 milliseconds

<<31323334353637383940>>