Searched refs:bytes (Results 76 - 100 of 1205) sorted by relevance

1234567891011>>

/external/chromium/third_party/libevent/test/
H A Dregress.rpc18 optional bytes some_bytes = 2;
19 bytes fixed_bytes[24] = 3;
/external/dropbear/
H A Dbignum.h32 void bytes_to_mp(mp_int *mp, const unsigned char* bytes, unsigned int len);
/external/emma/core/java12/com/vladium/emma/rt/
H A DIClassLoadHook.java26 // * returns false, the current loader will load the class bytes itself and
62 * class definition in 'bytes' ('out' could be backed by the same array as
63 * 'bytes')
68 byte [] bytes, int length,
67 processClassDef(String className, byte [] bytes, int length, ByteArrayOStream out) argument
/external/kernel-headers/original/linux/raid/
H A Dxor.h8 extern void xor_block(unsigned int count, unsigned int bytes, void **ptr);
/external/webkit/Source/WebKit/chromium/public/
H A DWebFileWriterClient.h43 virtual void didWrite(long long bytes, bool complete) = 0;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1ObjectIdentifier.java11 ASN1ObjectIdentifier(byte[] bytes) argument
13 super(bytes);
H A DDERBitString.java69 * return the correct number of bytes for a bit string defined in
74 int bytes = 4;
81 bytes--;
84 byte[] result = new byte[bytes];
85 for (int i = 0; i < bytes; i++)
215 byte[] bytes = new byte[getBytes().length + 1];
217 bytes[0] = (byte)getPadBits();
218 System.arraycopy(getBytes(), 0, bytes, 1, bytes.length - 1);
220 out.writeEncoded(BERTags.BIT_STRING, bytes);
273 fromOctetString(byte[] bytes) argument
[all...]
H A DASN1OutputStream.java52 void write(byte[] bytes) argument
55 os.write(bytes);
58 void write(byte[] bytes, int off, int len) argument
61 os.write(bytes, off, len);
66 byte[] bytes)
70 writeLength(bytes.length);
71 write(bytes);
107 void writeEncoded(int flags, int tagNo, byte[] bytes) argument
111 writeLength(bytes.length);
112 write(bytes);
64 writeEncoded( int tag, byte[] bytes) argument
[all...]
/external/chromium/net/base/
H A Dbandwidth_metrics.cc32 void ScopedBandwidthMetrics::RecordBytes(int bytes) { argument
33 g_bandwidth_metrics.Get().RecordBytes(bytes);
/external/emma/core/java12/com/vladium/jcd/cls/constant/
H A DCONSTANT_Fieldref_info.java63 protected CONSTANT_Fieldref_info (final UDataInputStream bytes) throws IOException argument
65 super (bytes);
H A DCONSTANT_InterfaceMethodref_info.java62 protected CONSTANT_InterfaceMethodref_info (final UDataInputStream bytes) throws IOException argument
64 super (bytes);
H A DCONSTANT_Methodref_info.java63 protected CONSTANT_Methodref_info (final UDataInputStream bytes) throws IOException argument
65 super (bytes);
/external/llvm/lib/Target/MSP430/
H A DMSP430MachineFunctionInfo.h27 /// stack frame in bytes.
40 void setCalleeSavedFrameSize(unsigned bytes) { CalleeSavedFrameSize = bytes; } argument
/external/valgrind/main/drd/tests/
H A Dtc16_byterace.stderr.exp4 Location 0x........ is 0 bytes inside bytes[4],
9 Location 0x........ is 0 bytes inside bytes[4],
/external/flac/libFLAC/
H A Dogg_decoder_aspect.c105 FLAC__OggDecoderAspectReadStatus FLAC__ogg_decoder_aspect_read_callback_wrapper(FLAC__OggDecoderAspect *aspect, FLAC__byte buffer[], size_t *bytes, FLAC__OggDecoderAspectReadCallbackProxy read_callback, const FLAC__StreamDecoder *decoder, void *client_data) argument
108 const size_t bytes_requested = *bytes;
121 * the same number of bytes from Ogg, then pass what's decoded down to
133 * to read in enough pages to return the full number of bytes
136 *bytes = 0;
137 while (*bytes < bytes_requested && !aspect->end_of_stream) {
140 size_t n = bytes_requested - *bytes;
141 if ((size_t)aspect->working_packet.bytes <= n) {
143 n = aspect->working_packet.bytes;
145 *bytes
[all...]
/external/valgrind/main/memcheck/tests/
H A Dleak-delta.stderr.exp1 expecting details 10 bytes reachable
2 10 bytes in 1 blocks are still reachable in loss record ... of ...
8 expecting details +10 bytes lost, +21 bytes reachable
9 10 (+10) bytes in 1 (+1) blocks are definitely lost in loss record ... of ...
14 21 (+21) bytes in 1 (+1) blocks are still reachable in loss record ... of ...
19 expecting details +65 bytes reachable
20 65 (+65) bytes in 2 (+2) blocks are still reachable in loss record ... of ...
26 expecting details +10 bytes reachable
27 10 (+10) bytes i
[all...]
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
H A DAttribute_info.java41 * item indicates the length of the subsequent information in bytes. The length
42 * does not include the initial six bytes that contain the attribute_name_index
96 * 'bytes'.
99 * @param bytes input .class data stream [may not be null; not validated]
106 final UDataInputStream bytes)
109 final int attribute_name_index = bytes.readU2 ();
110 final long attribute_length = bytes.readU4 ();
117 return new CodeAttribute_info (constants, attribute_name_index, attribute_length, bytes);
121 return new ConstantValueAttribute_info (attribute_name_index, attribute_length, bytes);
125 return new ExceptionsAttribute_info (attribute_name_index, attribute_length, bytes);
105 new_Attribute_info(final IConstantCollection constants, final UDataInputStream bytes) argument
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DIsoTypeReader.java110 byte[] bytes = new byte[4];
111 bb.get(bytes);
114 result |= ((bytes[0] << 24) & 0xFF000000);
115 result |= ((bytes[1] << 16) & 0xFF0000);
116 result |= ((bytes[2] << 8) & 0xFF00);
117 result |= ((bytes[3]) & 0xFF);
123 byte[] bytes = new byte[2];
124 bb.get(bytes);
126 result |= ((bytes[0] << 8) & 0xFF00);
127 result |= ((bytes[
[all...]
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DPipeline.java35 * Input class for the pipelined parser. Buffer all bytes read from the socket
87 byte[] bytes; field in class:Pipeline.Buffer
93 public Buffer(byte[] bytes, int length) { argument
96 this.bytes = bytes;
100 int retval = bytes[ptr++] & 0xFF;
131 public void write(byte[] bytes, int start, int length) throws IOException { argument
134 Buffer buff = new Buffer(bytes, length);
142 public void write(byte[] bytes) throws IOException { argument
145 Buffer buff = new Buffer(bytes, byte
[all...]
/external/apache-http/src/org/apache/commons/codec/net/
H A DQuotedPrintableCodec.java123 * Encodes an array of bytes into an array of quoted-printable 7-bit characters. Unsafe characters are escaped.
132 * @param bytes
133 * array of bytes to be encoded
134 * @return array of bytes containing quoted-printable data
136 public static final byte[] encodeQuotedPrintable(BitSet printable, byte[] bytes) { argument
137 if (bytes == null) {
144 for (int i = 0; i < bytes.length; i++) {
145 int b = bytes[i];
159 * Decodes an array quoted-printable characters into an array of original bytes. Escaped characters are converted
167 * @param bytes
173 decodeQuotedPrintable(byte[] bytes) argument
210 encode(byte[] bytes) argument
229 decode(byte[] bytes) argument
[all...]
H A DURLCodec.java104 * Encodes an array of bytes into an array of URL safe 7-bit
108 * @param bytes array of bytes to convert to URL safe characters
109 * @return array of bytes containing URL safe characters
111 public static final byte[] encodeUrl(BitSet urlsafe, byte[] bytes) argument
113 if (bytes == null) {
121 for (int i = 0; i < bytes.length; i++) {
122 int b = bytes[i];
147 * original bytes. Escaped characters are converted back to their
150 * @param bytes arra
154 decodeUrl(byte[] bytes) argument
191 encode(byte[] bytes) argument
205 decode(byte[] bytes) argument
[all...]
/external/guava/guava-tests/test/com/google/common/hash/
H A DHashCodesTest.java27 (byte) 0x67, (byte) 0x45, (byte) 0x23, (byte) 0x01, // up to here, same bytes as above
30 0x89abcdef, 0x0123456789abcdefL, // asInt/asLong as above, due to equal eight first bytes
46 // expectedHashCodes must contain at least one hash code with 4 bytes
49 if (expected.bytes.length == 4) {
56 // expectedHashCodes must contain at least one hash code with 8 bytes
59 if (expected.bytes.length == 8) {
68 HashCode fromBytes = HashCodes.fromBytes(expected.bytes);
74 assertTrue(Arrays.equals(expected.bytes, hash.asBytes()));
77 assertTrue(Arrays.equals(expected.bytes, bb));
104 for (int bytes
113 final byte[] bytes; field in class:HashCodesTest.ExpectedHashCode
117 ExpectedHashCode(byte[] bytes, int asInt, Long asLong, String toString) argument
[all...]
/external/iptables/include/linux/netfilter/
H A Dxt_sctp.h38 #define bytes(type) (sizeof(type) * 8) macro
42 (chunkmap)[type / bytes(__u32)] |= \
43 1 << (type % bytes(__u32)); \
48 (chunkmap)[type / bytes(__u32)] &= \
49 ~(1 << (type % bytes(__u32))); \
54 ((chunkmap)[type / bytes (__u32)] & \
55 (1 << (type % bytes (__u32)))) ? 1: 0; \
/external/kernel-headers/original/linux/netfilter/
H A Dxt_sctp.h39 #define bytes(type) (sizeof(type) * 8) macro
43 chunkmap[type / bytes(u_int32_t)] |= \
44 1 << (type % bytes(u_int32_t)); \
49 chunkmap[type / bytes(u_int32_t)] &= \
50 ~(1 << (type % bytes(u_int32_t))); \
55 (chunkmap[type / bytes (u_int32_t)] & \
56 (1 << (type % bytes (u_int32_t)))) ? 1: 0; \
/external/kernel-headers/original/linux/netfilter_ipv4/
H A Dipt_sctp.h37 #define bytes(type) (sizeof(type) * 8) macro
41 chunkmap[type / bytes(u_int32_t)] |= \
42 1 << (type % bytes(u_int32_t)); \
47 chunkmap[type / bytes(u_int32_t)] &= \
48 ~(1 << (type % bytes(u_int32_t))); \
53 (chunkmap[type / bytes (u_int32_t)] & \
54 (1 << (type % bytes (u_int32_t)))) ? 1: 0; \

Completed in 2324 milliseconds

1234567891011>>