/external/apache-http/src/org/apache/commons/codec/language/ |
Soundex.java | 262 char out[] = {'0', '0', '0', '0'}; local 265 out[0] = str.charAt(0); 267 while ((incount < str.length()) && (count < out.length)) { 271 out[count++] = mapped; 276 return new String(out);
|
/external/bison/src/ |
print.c | 47 fprintf (out, _(" type %d is %s\n"), extnum, tags[token]); 71 print_core (FILE *out, state *s) 89 fputc ('\n', out); 104 rule_lhs_print (&rules[r], previous_lhs, out); 108 fprintf (out, " %s", symbols[*sp]->tag); 109 fputs (" .", out); 111 fprintf (out, " %s", symbols[*sp]->tag); 116 state_rule_lookahead_tokens_print (s, &rules[r], out); 118 fputc ('\n', out); 125 | OUT. 506 FILE *out = xfopen (spec_verbose_file, "w"); local [all...] |
/external/boringssl/src/crypto/digest/ |
digest_test.cc | 12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 215 uint8_t *out = test->md.one_shot_func((const uint8_t *)test->input, local 217 if (out != digest) { 226 out = test->md.one_shot_func((const uint8_t *)test->input, 228 if (!CompareDigest(test, out, EVP_MD_size(test->md.func()))) {
|
/external/boringssl/src/decrepit/xts/ |
xts.c | 45 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 66 uint8_t *out, size_t len, int enc) { 95 memcpy(out, scratch.c, 16); 97 ((uint64_t *)out)[0] = scratch.u[0] ^= tweak.u[0]; 98 ((uint64_t *)out)[1] = scratch.u[1] ^= tweak.u[1]; 101 out += 16; 116 out[i] = scratch.c[i]; 124 memcpy(out - 16, scratch.c, 16); 151 out[16 + i] = scratch.c[i]; 160 memcpy(out, scratch.c, 16) 226 EVP_CIPHER_CTX *out = ptr; local [all...] |
/external/boringssl/src/ssl/ |
d1_pkt.c | 47 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 89 * The word 'cryptographic' can be left out if the rouines from the library 104 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 150 uint8_t *out = ssl_read_buffer(ssl) + ssl_record_prefix_len(ssl); local 154 switch (dtls_open_record(ssl, &type, out, &len, &consumed, &alert, max_out, 167 rr->data = out; 217 * alerts also aren't delivered reliably, so we may even time out because the 234 * Alert records (e.g. close_notify) and out of records. */ 341 /* If an alert record, process one alert out of the record. Note that we allow 397 /* Cross-epoch records are discarded, but we may receive out-of-orde 522 uint8_t *out; local [all...] |
s3_pkt.c | 34 * The word 'cryptographic' can be left out if the rouines from the library 49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 101 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 144 uint8_t *out = ssl_read_buffer(ssl) + ssl_record_prefix_len(ssl); local 148 switch (tls_open_record(ssl, &type, out, &len, &consumed, &alert, max_out, 161 rr->data = out; 212 /* Ensure that if we end up with a smaller value of data to write out than 298 uint8_t *out; local 300 if (!ssl_write_buffer_init(ssl, &out, max_out) || 301 !tls_seal_record(ssl, out, &ciphertext_len, max_out, type, buf, len)) [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
ASN1ApplicationSpecific.java | 156 void encode(ASN1OutputStream out) throws IOException 164 out.writeEncoded(classBits, tag, octets);
|
ASN1GeneralizedTime.java | 380 ASN1OutputStream out) 383 out.writeEncoded(BERTags.GENERALIZED_TIME, time);
|
ASN1UTCTime.java | 293 ASN1OutputStream out) 296 out.write(BERTags.UTC_TIME); 300 out.writeLength(length); 304 out.write((byte)time[i]);
|
BEROctetString.java | 136 ASN1OutputStream out) 139 out.write(BERTags.CONSTRUCTED | BERTags.OCTET_STRING); 141 out.write(0x80); 144 // write out the octet array 148 out.writeObject((ASN1Encodable)e.nextElement()); 151 out.write(0x00); 152 out.write(0x00);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/ |
BCDHPublicKey.java | 196 ObjectOutputStream out) 199 out.defaultWriteObject(); 201 out.writeObject(dhSpec.getP()); 202 out.writeObject(dhSpec.getG()); 203 out.writeInt(dhSpec.getL());
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/ |
BCDSAPrivateKey.java | 158 ObjectOutputStream out) 161 out.defaultWriteObject(); 163 out.writeObject(dsaSpec.getP()); 164 out.writeObject(dsaSpec.getQ()); 165 out.writeObject(dsaSpec.getG());
|
BCDSAPublicKey.java | 163 ObjectOutputStream out) 166 out.defaultWriteObject(); 168 out.writeObject(dsaSpec.getP()); 169 out.writeObject(dsaSpec.getQ()); 170 out.writeObject(dsaSpec.getG());
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/ |
BCRSAPrivateKey.java | 140 ObjectOutputStream out) 143 out.defaultWriteObject();
|
BCRSAPublicKey.java | 164 ObjectOutputStream out) 167 out.defaultWriteObject(); 171 out.writeObject(algorithmIdentifier.getEncoded());
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/ |
PKCS12BagAttributeCarrierImpl.java | 75 public void writeObject(ObjectOutputStream out) 80 out.writeObject(new Hashtable()); 81 out.writeObject(new Vector()); 98 out.writeObject(bOut.toByteArray());
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/ |
Base64Encoder.java | 62 OutputStream out) 75 out.write(encodingTable[(a1 >>> 2) & 0x3f]); 76 out.write(encodingTable[((a1 << 4) | (a2 >>> 4)) & 0x3f]); 77 out.write(encodingTable[((a2 << 2) | (a3 >>> 6)) & 0x3f]); 78 out.write(encodingTable[a3 & 0x3f]); 96 out.write(encodingTable[b1]); 97 out.write(encodingTable[b2]); 98 out.write(padding); 99 out.write(padding); 109 out.write(encodingTable[b1]) [all...] |
/external/caliper/caliper/src/main/java/com/google/caliper/worker/ |
WorkerMain.java | 75 System.out.flush(); // ?
|
/external/curl/docs/examples/ |
http2-serverpush.c | 130 FILE *out = fopen(OUTPUTFILE, "wb"); local 133 curl_easy_setopt(hnd, CURLOPT_WRITEDATA, out); 167 FILE *out; local 175 out = fopen(filename, "wb"); 178 curl_easy_setopt(easy, CURLOPT_WRITEDATA, out);
|
/external/curl/src/ |
tool_easysrc.c | 79 /* Clean up all source code if we run out of memory */ 178 FILE *out; local 181 out = fopen(o, FOPEN_WRITETEXT); 185 out = stdout; 186 if(!out) 193 fprintf(out, "%s\n", c); 198 fprintf(out, " %s\n", ptr->data); 203 fprintf(out, "\n"); 206 fprintf(out, " %s\n", ptr->data); 209 fprintf(out, "\n") [all...] |
tool_parsecfg.c | 178 /* out of memory */ 297 char out; local 301 switch(out = *line) { 303 continue; /* this'll break out of the loop */ 305 out = '\t'; 308 out = '\n'; 311 out = '\r'; 314 out = '\v'; 317 *param++ = out; 330 * NULL is returned on an out of memory condition [all...] |
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
AnnotationItem.java | 153 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(); local 154 ValueEncoder encoder = new ValueEncoder(addedTo.getFile(), out); 157 encodedForm = out.toByteArray(); 168 * @param out {@code non-null;} where to output to 171 public void annotateTo(AnnotatedOutput out, String prefix) { 172 out.annotate(0, prefix + "visibility: " + 174 out.annotate(0, prefix + "type: " + annotation.getType().toHuman()); 180 out.annotate(0, prefix + name.toHuman() + ": " + 187 protected void writeTo0(DexFile file, AnnotatedOutput out) { 188 boolean annotates = out.annotates() [all...] |
TypeListItem.java | 92 protected void writeTo0(DexFile file, AnnotatedOutput out) { 96 if (out.annotates()) { 97 out.annotate(0, offsetString() + " type_list"); 98 out.annotate(HEADER_SIZE, " size: " + Hex.u4(sz)); 102 out.annotate(ELEMENT_SIZE, 107 out.writeInt(sz); 110 out.writeShort(typeIds.indexOf(list.getType(i)));
|
/external/dexmaker/src/dx/java/com/android/dx/util/ |
TwoColumnOutput.java | 32 private final Writer out; field in class:TwoColumnOutput 83 * @param out {@code non-null;} writer to send final output to 88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth, 90 if (out == null) { 91 throw new NullPointerException("out == null"); 109 this.out = out; 121 * @param out {@code non-null;} stream to send final output to 126 public TwoColumnOutput(OutputStream out, int leftWidth, int rightWidth, 128 this(new OutputStreamWriter(out), leftWidth, rightWidth, spacer) [all...] |
/external/dng_sdk/source/ |
dng_rect.h | 494 dng_rect out = rect; local 496 HalfRect (out); 498 return out; 507 dng_rect out = rect; local 509 DoubleRect (out); 511 return out; 521 dng_rect out = rect; local 523 InnerPadRect (out, pad); 525 return out; 535 dng_rect out = rect local [all...] |