HomeSort by relevance Sort by last modified time
    Searched full:out_index (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/net/quic/crypto/
common_cert_set.h 37 // set in |out_hash|, the index of |cert| in the set in |out_index| and
42 uint32* out_index) const = 0;
common_cert_set.cc 93 uint64* out_hash, uint32* out_index) const OVERRIDE {
127 *out_index = mid;
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/json/
Base64.java 70 int out_index = 0; local
110 out[out_index++] = (byte) ((quantum & 0x00FF0000) >> 16);
111 out[out_index++] = (byte) ((quantum & 0x0000FF00) >> 8);
112 out[out_index++] = (byte) (quantum & 0x000000FF);
120 out[out_index++] = (byte) ((quantum & 0x00FF0000) >> 16);
122 out[out_index++] = (byte) ((quantum & 0x0000FF00) >> 8);
126 byte[] result = new byte[out_index];
127 System.arraycopy(out, 0, result, 0, out_index);
  /external/chromium_org/third_party/boringssl/src/include/openssl/
stack_macros.h 65 #define sk_ACCESS_DESCRIPTION_find(sk, out_index, p) \
67 (out_index), CHECKED_CAST(void *, ACCESS_DESCRIPTION *, p))
144 #define sk_ASN1_ADB_TABLE_find(sk, out_index, p) \
145 sk_find(CHECKED_CAST(_STACK *, STACK_OF(ASN1_ADB_TABLE) *, sk), (out_index), \
225 #define sk_ASN1_GENERALSTRING_find(sk, out_index, p) \
227 (out_index), CHECKED_CAST(void *, ASN1_GENERALSTRING *, p))
304 #define sk_ASN1_INTEGER_find(sk, out_index, p) \
305 sk_find(CHECKED_CAST(_STACK *, STACK_OF(ASN1_INTEGER) *, sk), (out_index), \
380 #define sk_ASN1_OBJECT_find(sk, out_index, p) \
381 sk_find(CHECKED_CAST(_STACK *, STACK_OF(ASN1_OBJECT) *, sk), (out_index), \
    [all...]
stack.h 256 * index is written to |*out_index| (if |out_index| is not NULL) and one is
258 OPENSSL_EXPORT int sk_find(_STACK *sk, size_t *out_index, void *p);
rsa.h 164 * valid PKCS #1 message, it returns one and sets |*out_index| to the start of
166 * length |from_len - *out_index|. Otherwise, it returns zero and sets
167 * |*out_index| to some undefined value. This function runs in time independent
175 size_t *out_index);
  /external/chromium_org/net/quic/
quic_utils.h 37 // If |out_index| is non-NULL and a match is found then the index of that
38 // match in |their_tags| is written to |out_index|.
44 size_t* out_index);
quic_utils.cc 68 size_t* out_index) {
94 if (out_index) {
96 *out_index = j;
98 *out_index = i;
  /external/chromium_org/third_party/boringssl/src/crypto/stack/
make_macros.sh 65 #define sk_${type}_find(sk, out_index, p)\\
66 sk_find(CHECKED_CAST(_STACK*, STACK_OF(${type})*, sk), (out_index), CHECKED_CAST(void*, ${ptrtype}, p))
stack.c 227 int sk_find(_STACK *sk, size_t *out_index, void *p) {
240 if (out_index) {
241 *out_index = i;
270 if (out_index) {
271 *out_index = i;
  /external/chromium_org/sdch/open-vcdiff/src/
encodetable_test.cc 45 out_index(0) { }
103 EXPECT_EQ(b, static_cast<unsigned char>(out[out_index]));
104 ++out_index;
109 EXPECT_EQ(s, string(out.data() + out_index, size));
110 out_index += size;
114 EXPECT_EQ(out_index, out.size());
144 size_t out_index; member in class:open_vcdiff::__anon15276::CodeTableWriterTest
instruction_map_test.cc 73 size_t out_index; member in class:open_vcdiff::__anon15278::InstructionMapTest
  /external/libpcap/
pcap-dos.c     [all...]
pcap-dos.h 123 int out_index; /* queue index tail */ member in struct:rx_ringbuf
  /external/chromium_org/net/quic/test_tools/
crypto_test_utils.cc 376 uint32* out_index) const OVERRIDE {
399 *out_index = index_;
  /external/chromium_org/third_party/boringssl/src/crypto/rsa/
padding.c 224 size_t *out_index) {
257 *out_index = zero_index + 1;
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
neteq_impl.cc 1707 size_t out_index = 0; local
    [all...]
  /external/libpng/contrib/libtests/
pngvalid.c 8741 PNG_CONST unsigned int out_index = local
    [all...]

Completed in 971 milliseconds