/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
AVT.java | 297 lookahead = null; // breaks out of inner while loop 313 lookahead = null; // breaks out of inner while loop 453 String out = null; local 461 out = buf.toString(); 469 return out; 494 String out = null; local 501 out = buf.toString(); 509 return out;
|
/external/apache-xml/src/main/java/org/apache/xpath/patterns/ |
NodeTest.java | 462 System.out.print(" | "); 464 System.out.print(v.elementAt(i)); 468 System.out.print("empty whatToShow: " + whatToShow); 470 System.out.println(); 487 // System.out.println("subPartMatch - p: "+p+", t: "+t+", result: "+b);
|
/external/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/bsdiff/ |
BsPatch.java | 274 * @param out the stream to write bytes to. 280 final InputStream in, final OutputStream out, final byte[] buffer, int copyLength) 285 out.write(buffer, 0, maxCopy);
|
/external/bison/src/ |
output.c | 112 | Print to OUT a representation of CP quoted and escaped for M4. | 116 quoted_output (FILE *out, char const *cp) 118 fprintf (out, "[["); 123 case '$': fputs ("$][", out); break; 124 case '@': fputs ("@@", out); break; 125 case '[': fputs ("@{", out); break; 126 case ']': fputs ("@}", out); break; 127 default: fputc (*cp, out); break; 130 fprintf (out, "]]"); 134 | Print to OUT a representation of STRING quoted and escaped both 592 FILE *out = fdopen (filter_fd[1], "w"); local [all...] |
print-xml.c | 56 print_core (FILE *out, int level, state *s) 68 xml_puts (out, level, "<itemset/>"); 72 xml_puts (out, level, "<itemset>"); 97 xml_printf (out, level + 1, 101 out, level + 2); 102 xml_puts (out, level + 1, "</item>"); 109 xml_printf (out, level + 1, 115 xml_puts (out, level, "</itemset>"); 121 | OUT. | 125 print_transitions (state *s, FILE *out, int level 502 FILE *out = xfopen (spec_xml_file, "w"); local [all...] |
/external/boringssl/src/crypto/bio/ |
bio_test.cc | 12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 336 uint8_t *out; local 338 int ok = BIO_read_asn1(bio.get(), &out, &out_len, max_len); 340 out = nullptr; 342 ScopedOpenSSLBytes out_storage(out); 349 (out_len != expected_len || memcmp(data, out, expected_len) != 0)) {
|
/external/boringssl/src/crypto/des/ |
des.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 392 * <71755.204@CompuServe.COM> for pointing this out. */ 455 * pointing this out. */ 545 uint8_t *out = out_block->bytes; local 553 l2c(l, out); 555 l2c(l, out); 559 void DES_ncbc_encrypt(const uint8_t *in, uint8_t *out, size_t len, 581 l2c(tout0, out); 583 l2c(tout1, out); 641 uint8_t *out = output->bytes; local [all...] |
/external/boringssl/src/crypto/dh/ |
dh_test.cc | 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 FILE *out = reinterpret_cast<FILE*>(arg->arg); local 102 fputc(c, out); 103 fflush(out); 458 /* Work out shared secrets using both sides and compare
|
/external/boringssl/src/crypto/ec/ |
p256-x86_64.c | 12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 222 /* ecp_nistz256_bignum_to_field_elem copies the contents of |in| to |out| and 224 static int ecp_nistz256_bignum_to_field_elem(BN_ULONG out[P256_LIMBS], 230 memset(out, 0, sizeof(BN_ULONG) * P256_LIMBS); 231 memcpy(out, in->d, sizeof(BN_ULONG) * in->top); 492 P256_POINT *out = &t.p; local 494 out = &p.p; 497 if (!ecp_nistz256_windowed_mul(group, out, p_, p_scalar, ctx)) { 502 ecp_nistz256_point_add(&p.p, &p.p, out);
|
/external/boringssl/src/crypto/rsa/ |
rsa_test.cc | 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 626 uint8_t out[256]; local [all...] |
/external/boringssl/src/ssl/ |
ssl_asn1.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 382 uint8_t *out; local 385 if (!SSL_SESSION_to_bytes(in, &out, &len)) { 390 OPENSSL_free(out); 396 memcpy(*pp, out, len); 399 OPENSSL_free(out); 405 * explicitly tagged with |tag| from |cbs| and saves it in |*out|. On 406 * entry, if |*out| is not NULL, it frees the existing contents. If 407 * the element was not found, it sets |*out| to NULL. It returns on [all...] |
/external/boringssl/src/tool/ |
speed.cc | 12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 195 uint8_t *const out = align(out_storage.get(), kAlignment); local 196 memset(out, 0, chunk_len + overhead_len); 208 out, &ctx, &nonce, &ad]() -> bool { 212 &ctx, out, &out_len, chunk_len + overhead_len, nonce.get(), 442 uint8_t out[32], in[32]; 444 X25519_public_from_private(out, in); 454 uint8_t out[32], in1[32], in2[32]; 459 return X25519(out, in1, in2) == 1;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
ASN1ObjectIdentifier.java | 243 ByteArrayOutputStream out, 254 out.write(result, pos, 9 - pos); 258 ByteArrayOutputStream out, 264 out.write(0); 276 out.write(tmp, 0, tmp.length); 337 ASN1OutputStream out) 342 out.write(BERTags.OBJECT_IDENTIFIER); 343 out.writeLength(enc.length); 344 out.write(enc);
|
DERExternal.java | 132 void encode(ASN1OutputStream out) 150 out.writeEncoded(BERTags.CONSTRUCTED, BERTags.EXTERNAL, baos.toByteArray());
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/ |
BCDHPrivateKey.java | 205 ObjectOutputStream out) 208 out.defaultWriteObject(); 210 out.writeObject(dhSpec.getP()); 211 out.writeObject(dhSpec.getG()); 212 out.writeInt(dhSpec.getL());
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/ |
BCECPrivateKey.java | 430 ObjectOutputStream out) 433 out.defaultWriteObject(); 435 out.writeObject(this.getEncoded());
|
BCECPublicKey.java | 409 ObjectOutputStream out) 412 out.defaultWriteObject(); 414 out.writeObject(this.getEncoded());
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/ |
bitmaptools.cc | 20 bool ReadInt(int* out) { 21 return fread(out, sizeof(*out), 1, stdin) == 1; 126 unsigned char* out = new unsigned char[out_size]; local 127 unsigned char* dst = out; 135 WriteResponse(out, out_size); 136 delete[] out;
|
/external/curl/docs/examples/ |
curlx.c | 73 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 106 " -out arg - output file (response)- default stdout", 122 -mimetype application/dvcs -acceptmime application/dvcs -out response 271 BIO* out=NULL; local 314 else if(!strcmp (*args, "-out")) { 398 if((out=BIO_new(BIO_s_file())) == NULL) { 403 BIO_set_fp(out, stdout, BIO_NOCLOSE|BIO_FP_TEXT); 404 else if(BIO_write_filename(out, outfile) <= 0) { 406 BIO_free(out); 494 BIO_get_fp(out, &outfp) [all...] |
http2-upload.c | 184 FILE *out; local 191 out = fopen(filename, "wb"); 203 curl_easy_setopt(hnd, CURLOPT_WRITEDATA, out);
|
/external/deqp/modules/gles3/functional/ |
es3fFboTestCase.cpp | 217 std::vector<std::string> out; local 224 out.push_back("GL_EXT_color_buffer_half_float"); 230 out.push_back("GL_EXT_color_buffer_half_float"); 238 out.push_back("GL_EXT_color_buffer_float"); 244 return out;
|
es3fShaderPackingFunctionTests.cpp | 195 void* out = &outputs[0]; local 198 m_executor->execute((int)inputs.size(), &in, &out); 283 void* out = &outputs[0]; local 286 m_executor->execute((int)inputs.size(), &in, &out); 386 void* out = &outputs[0]; local 389 m_executor->execute((int)inputs.size(), &in, &out); 474 void* out = &outputs[0]; local 477 m_executor->execute((int)inputs.size(), &in, &out); 582 void* out = &outputs[0]; local 585 m_executor->execute((int)inputs.size(), &in, &out); 685 void* out = &outputs[0]; local [all...] |
/external/deqp/modules/gles31/functional/ |
es31fFboTestCase.cpp | 223 std::vector<std::string> out; local 230 out.push_back("GL_EXT_color_buffer_half_float"); 236 out.push_back("GL_EXT_color_buffer_half_float"); 244 out.push_back("GL_EXT_color_buffer_float"); 251 return out;
|
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
DalvInsnList.java | 123 * @param out {@code non-null;} where to write to 125 public void writeTo(AnnotatedOutput out) { 126 int startCursor = out.getCursor(); 129 if (out.annotates()) { 130 boolean verbose = out.isVerbose(); 138 s = insn.listingString(" ", out.getAnnotationWidth(), 145 out.annotate(codeBytes, s); 147 out.annotate(codeBytes, ""); 155 insn.writeTo(out); 163 int written = (out.getCursor() - startCursor) / 2 [all...] |
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/ |
CstString.java | 86 char out; local 96 out = (char) v0; 118 out = (char) value; 145 out = (char) value; 154 chars[outAt] = out;
|