/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.test.performance_3.6.0.v20091014.jar | |
/external/dbus/dbus/ |
dbus-memory.c | 141 _dbus_verbose ("Will fail mallocs over %ld bytes\n", 348 _dbus_verbose ("Checking %d bytes request from source %s\n", 358 _dbus_warn ("Block of %lu bytes from %s had start guard value 0x%ux at %d expected 0x%x\n", 373 _dbus_warn ("Block of %lu bytes from %s had end guard value 0x%ux at %d expected 0x%x\n", 382 /* set memory to anything but nul bytes */ 440 * Allocates the given number of bytes, as with standard 441 * malloc(). Guaranteed to return #NULL if bytes is zero 448 * @param bytes number of bytes to allocate 452 dbus_malloc (size_t bytes) [all...] |
/external/apache-http/src/org/apache/http/impl/io/ |
ContentLengthInputStream.java | 40 * Stream that cuts off after a specified number of bytes. 75 * The maximum number of bytes that can be read from the stream. Subsequent 95 * @param contentLength The maximum number of bytes that can be read from 156 * @param len The number of bytes to attempt to read. 157 * @return The number of bytes read, or -1 if the end of content has been 181 * Read more bytes from the stream. 183 * @return The number of bytes read into the buffer. 192 * Skips and discards a number of bytes from the input stream. 193 * @param n The number of bytes to skip. 194 * @return The actual number of bytes skipped. <= 0 if no byte [all...] |
/libcore/luni/src/main/native/ |
java_nio_charset_Charsets.cpp | 32 * We could avoid this by keeping the UTF-8 bytes on the native heap until we're done and only 110 ScopedByteArrayRO bytes(env, javaBytes); 111 if (bytes.get() == NULL) { 119 const jbyte* src = &bytes[offset]; 129 ScopedByteArrayRO bytes(env, javaBytes); 130 if (bytes.get() == NULL) { 138 const jbyte* src = &bytes[offset]; 146 * Translates the given characters to US-ASCII or ISO-8859-1 bytes, using the fact that 157 ScopedByteArrayRW bytes(env, javaBytes); 158 if (bytes.get() == NULL) [all...] |
/packages/apps/Email/src/org/apache/commons/io/output/ |
ThresholdingOutputStream.java | 24 * An output stream which triggers an event when a specified number of bytes of
55 * The number of bytes written to the output stream.
73 * @param threshold The number of bytes at which to trigger an event.
100 * Writes <code>b.length</code> bytes from the specified byte array to this
103 * @param b The array of bytes to be written.
116 * Writes <code>len</code> bytes from the specified byte array starting at
121 * @param len The number of bytes to write.
134 * Flushes this output stream and forces any buffered output bytes to be
169 * Returns the threshold, in bytes, at which an event will be triggered.
171 * @return The threshold point, in bytes. [all...] |
/cts/tools/cfassembler/src/dxconvext/ |
ClassFileParser.java | 79 byte[] bytes = FileUtils.readFile(inFile); 91 ClassFileParser.this.processFileBytes(w, cfName, bytes); 100 * @param allbytes the bytes of this java src file 126 * @param bytes non-null; the source that is being parsed 127 * @param offset offset into <code>bytes</code> for the start of 132 public void startParsingMember(ByteArray bytes, int offset, 134 // ByteArray ba = bytes.slice(offset, bytes.size()); 136 + offset + ", len:" + (bytes.size() - offset) 145 * @param bytes non-null; the source that was parse [all...] |
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/ |
BlenderInputStream.java | 55 * Size of a pointer; all pointers in the file are stored in this format. '_' means 4 bytes and '-' means 8 bytes.
175 throw new BlenderFileException("Error reading header identifier. Only " + bytesRead + " bytes read and there should be 7!");
196 throw new BlenderFileException("Error reading version numberr. Only " + bytesRead + " bytes read and there should be 3!");
211 * @return a byte from the stream (1 bytes read)
218 * This method reads a bytes number big enough to fill the table.
220 * @param bytes
222 * @return number of read bytes (a length of array actually)
224 private int readBytes(byte[] bytes) {
225 for (int i = 0; i < bytes.length; ++i) { [all...] |
/dalvik/dx/src/com/android/dx/cf/code/ |
BytecodeArray.java | 41 /** {@code non-null;} underlying bytes */ 42 private final ByteArray bytes; field in class:BytecodeArray 53 * @param bytes {@code non-null;} underlying bytes 57 public BytecodeArray(ByteArray bytes, ConstantPool pool) { 58 if (bytes == null) { 59 throw new NullPointerException("bytes == null"); 66 this.bytes = bytes; 76 return bytes; [all...] |
/external/icu4c/common/ |
bytestriebuilder.cpp | 28 * Note: This builder implementation stores (bytes, value) pairs with full copies 80 // If the stringOffset is negative, then the first two strings bytes contain 82 // (Compared with a stringLength field here, this saves 3 bytes per string for most strings.) 95 // Too long: We store the length in 1 or 2 bytes. 128 bytes(NULL), bytesCapacity(0), bytesLength(0) { 141 uprv_free(bytes); 193 newTrie=new BytesTrie(bytes, bytes+(bytesCapacity-bytesLength)); 197 bytes=NULL; // The new trie now owns the array. 209 result.set(bytes+(bytesCapacity-bytesLength), bytesLength) [all...] |
/external/qemu/distrib/libpng-1.2.19/ |
pngvcrd.c | 25 * [Copy 6 bytes per pixel, not 4, and use stride of 6, not 4, in the 67 _asm _emit 0x0f //CPUID instruction (two bytes opcode) 220 add esi,24 //inc by 24 bytes processed 367 add esi,32 //inc by 32 bytes processed 473 add esi,8 //inc by 8 bytes processed 756 add esi,16 //inc by 16 bytes processed 916 add esi,48 //inc by 32 bytes processed [all...] |
/external/guava/guava-tests/test/com/google/common/io/ |
ByteStreamsTest.java | 25 import com.google.common.primitives.Bytes; 455 byte[] bytes = newPreFilledByteArray(100); 456 skipHelper(0, 0, new ByteArrayInputStream(bytes)); 457 skipHelper(50, 50, new ByteArrayInputStream(bytes)); 458 skipHelper(50, 50, new SlowSkipper(new ByteArrayInputStream(bytes), 1)); 459 skipHelper(50, 50, new SlowSkipper(new ByteArrayInputStream(bytes), 0)); 460 skipHelper(100, -1, new ByteArrayInputStream(bytes)); 462 skipHelper(101, 0, new ByteArrayInputStream(bytes)); 476 private static final byte[] BYTES = new byte[] { 490 ByteArrayDataInput in = ByteStreams.newDataInput(BYTES); [all...] |
/external/libvpx/ |
md5_utils.c | 12 * To compute the message digest of a chunk of bytes, declare an 14 * needed on buffers full of bytes, and then call MD5Final, which 32 /* Only swap bytes for big endian machines */ 61 ctx->bytes[0] = 0; 62 ctx->bytes[1] = 0; 67 * of bytes. 76 t = ctx->bytes[0]; 78 if ((ctx->bytes[0] = t + len) < t) 79 ctx->bytes[1]++; /* Carry from low to high */ 106 /* Handle any remaining bytes of data. * [all...] |
/external/openssl/crypto/x509/ |
x509name.c | 175 unsigned char *bytes, int len, int loc, int set) 179 ne = X509_NAME_ENTRY_create_by_OBJ(NULL, obj, type, bytes, len); 187 unsigned char *bytes, int len, int loc, int set) 191 ne = X509_NAME_ENTRY_create_by_NID(NULL, nid, type, bytes, len); 199 const unsigned char *bytes, int len, int loc, int set) 203 ne = X509_NAME_ENTRY_create_by_txt(NULL, field, type, bytes, len); 276 const char *field, int type, const unsigned char *bytes, int len) 289 nentry = X509_NAME_ENTRY_create_by_OBJ(ne,obj,type,bytes,len); 295 int type, unsigned char *bytes, int len) 306 nentry = X509_NAME_ENTRY_create_by_OBJ(ne,obj,type,bytes,len) [all...] |
/external/protobuf/python/google/protobuf/internal/ |
wire_format_test.py | 186 # Test strings and bytes. 188 # 1 byte for tag, 1 byte for length, 3 bytes for contents. 190 # 2 bytes for tag, 1 byte for length, 3 bytes for contents. 192 # 2 bytes for tag, 2 bytes for length, 128 bytes for contents. 196 # 1 byte for tag, 1 byte for length, 8 bytes for content. 209 # (2 * 1) bytes for begin and end tags, plus message_byte_size. 212 # (2 * 2) bytes for begin and end tags, plus message_byte_size [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/ |
SHA1withDSA_SignatureImpl.java | 167 * Returns signature bytes as byte array containing 297 * b byte array containing bytes to update 301 * len number of bytes to use for updating 325 byte[] bytes; 339 throw new SignatureException("signature bytes have invalid encoding"); 349 bytes = new byte[n1]; 350 System.arraycopy(sigBytes, offset + 4, bytes, 0, n1); 351 r = new BigInteger(bytes); 353 bytes = new byte[n2]; 354 System.arraycopy(sigBytes, offset + 6 + n1, bytes, 0, n2) [all...] |
/prebuilt/common/ecj/ |
ecj.jar | |
/cts/tests/tests/content/src/android/content/res/cts/ |
AssetManager_AssetInputStreamTest.java | 52 final byte[] bytes = CONTENT_STRING.getBytes(); 54 assertEquals(bytes[i], mAssetInputStream.read()); 59 assertEquals(bytes[i + readlimit], mAssetInputStream.read()); 65 final byte[] bytes = CONTENT_STRING.getBytes(); 70 assertEquals(bytes[i], mAssetInputStream.read()); 81 assertEquals(bytes[i], data[i]); 86 assertEquals(bytes[i + dataLength], data[i]); 96 assertEquals(bytes[i], data[offset + i]); 103 assertEquals(bytes[i], data[offset + i]); 109 assertEquals(bytes[i + dataLength], data[offset + i]) [all...] |
/dalvik/dx/src/com/android/dx/command/dump/ |
DotDumper.java | 44 private final byte[] bytes; field in class:DotDumper 50 static void dump(byte[] bytes, String filePath, Args args) { 51 new DotDumper(bytes, filePath, args).run(); 54 DotDumper(byte[] bytes, String filePath, Args args) { 55 this.bytes = bytes; 63 ByteArray ba = new ByteArray(bytes); 93 public void parsed(ByteArray bytes, int offset, int len, String human) { 98 public void startParsingMember(ByteArray bytes, int offset, String name, 103 public void endParsingMember(ByteArray bytes, int offset, String name [all...] |
/external/chromium/net/tools/flip_server/ |
ring_buffer.cc | 53 // Appends up-to-'size' bytes to the ringbuffer. 54 int RingBuffer::Write(const char* bytes, int size) { 67 memcpy(wptr, bytes + bytes_written, wsize); 75 const char* p = bytes; 82 const char* end = bytes + bytes_to_write; 131 // returns the number of bytes read into 132 int RingBuffer::Read(char* bytes, int size) { 145 memcpy(bytes + bytes_read, rptr, rsize); 153 char* p = bytes; 159 char* end = bytes + bytes_to_read [all...] |
/external/chromium/third_party/modp_b64/ |
modp_b64.h | 33 * src contains the bytes 34 * len contains the number of bytes in the src 36 * at least modp_b64_encode_len(len) bytes (see below) 45 * int srclen = ...; //the length of number of bytes in src 61 * src should contain exactly len bytes of b64 characters. 66 * len * 3 / 4 bytes. 86 * 3 bytes turn into 4 chars 96 * It maybe be more than the actual number of bytes written. 99 * decode 4 chars turn into 3 bytes 106 * This may be less than the required number of bytes allocated [all...] |
/external/iproute2/man/man8/ |
tc-red.8 | 7 bytes 9 bytes 11 bytes 13 bytes 50 bytes, no packet will ever be marked. When it exceeds 57 bytes. Because 62 bytes, so the 84 Hard limit on the real (not average) queue size in bytes. Further packets 96 Specified in bytes. Used with burst to determine the time constant for 112 bytes. Needs a tc binary with RED support compiled in. Recommended [all...] |
/external/llvm/include/llvm/Bitcode/ |
ReaderWriter.h | 71 /// isBitcodeWrapper - Return true if the given bytes are the magic bytes 76 // See if you can find the hidden message in the magic bytes :-). 85 /// isRawBitcode - Return true if the given bytes are the magic bytes for 90 // These bytes sort of have a hidden message, but it's not in 99 /// isBitcode - Return true if the given bytes are the magic bytes for 129 OffsetField = 2*4, // Offset in bytes to Offset field. 130 SizeField = 3*4 // Offset in bytes to Size field [all...] |
/external/skia/src/images/ |
SkJpegUtility.cpp | 42 size_t bytes = src->fStream->read(src->fBuffer, skjpeg_source_mgr::kBufferSize); local 45 if (bytes == 0) { 49 src->current_offset += bytes; 51 src->bytes_in_buffer = bytes; 61 long bytes = (long)src->fStream->skip(bytesToSkip); local 62 if (bytes <= 0 || bytes > bytesToSkip) { 63 // SkDebugf("xxxxxxxxxxxxxx failure to skip request %d returned %d\n", bytesToSkip, bytes); 67 src->current_offset += bytes; 68 bytesToSkip -= bytes; [all...] |
/frameworks/base/core/java/android/nfc/tech/ |
NfcA.java | 75 * Return the ATQA/SENS_RES bytes from tag discovery. 79 * @return ATQA/SENS_RES bytes 86 * Return the SAK/SEL_RES bytes from tag discovery. 90 * @return SAK bytes 101 * <p>Applications must only send commands that are complete bytes, 105 * <p>Use {@link #getMaxTransceiveLength} to retrieve the maximum number of bytes 114 * @param data bytes to send 115 * @return bytes received in response 124 * Return the maximum number of bytes that can be sent with {@link #transceive}. 125 * @return the maximum number of bytes that can be sent with {@link #transceive} [all...] |
/frameworks/compile/slang/BitWriter_2_9/ |
ReaderWriter_2_9.h | 63 /// isBitcodeWrapper - Return true if the given bytes are the magic bytes 68 // See if you can find the hidden message in the magic bytes :-). 77 /// isRawBitcode - Return true if the given bytes are the magic bytes for 82 // These bytes sort of have a hidden message, but it's not in 91 /// isBitcode - Return true if the given bytes are the magic bytes for 118 OffsetField = 2*4, // Offset in bytes to Offset field. 119 SizeField = 3*4 // Offset in bytes to Size field [all...] |