HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 301 - 325 of 3019) sorted by null

<<11121314151617181920>>

  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/
Debug.java 18 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
30 System.out.printf("%3d, ", output[i]);
33 System.out.println();
41 System.out.printf("%3d, ", output[i]);
44 System.out.println();
51 System.out.printf("%3d, ", output.get());
53 System.out.println();
61 System.out.printf("%3d, ", table[i]);
64 System.out.println();
69 // System.out.printf("> " + format + "\n", args)
    [all...]
  /external/openssl/apps/
gendsa.c 35 * The word 'cryptographic' can be left out if the rouines from the library
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
86 BIO *out=NULL,*in=NULL; local
106 if (strcmp(*argv,"-out") == 0)
174 BIO_printf(bio_err," -out file - output the key to 'file'\n");
230 out=BIO_new(BIO_s_file());
231 if (out == NULL) goto end;
235 BIO_set_fp(out,stdout,BIO_NOCLOSE);
239 out = BIO_push(tmpbio, out);
    [all...]
nseq.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
73 BIO *in = NULL, *out = NULL; local
89 } else if (!strcmp (*args, "-out")) {
103 BIO_printf (bio_err, "-out file output file\n");
117 if (!(out = BIO_new_file (outfile, "w"))) {
123 out = BIO_new_fp(stdout, BIO_NOCLOSE);
127 out = BIO_push(tmpbio, out);
143 PEM_write_bio_NETSCAPE_CERT_SEQUENCE(out, seq);
156 dump_cert_text(out, x509)
    [all...]
pkeyparam.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
72 BIO *in = NULL, *out = NULL; local
101 else if (!strcmp (*args, "-out"))
133 BIO_printf(bio_err, "-out file output file\n");
160 if (!(out = BIO_new_file (outfile, "w")))
169 out = BIO_new_fp (stdout, BIO_NOCLOSE);
173 out = BIO_push(tmpbio, out);
187 PEM_write_bio_Parameters(out,pkey);
190 EVP_PKEY_print_params(out, pkey, 0, NULL)
    [all...]
  /external/openssl/crypto/des/
ecb_enc.c 35 * The word 'cryptographic' can be left out if the rouines from the library
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
114 unsigned char *out = &(*output)[0]; local
119 l=ll[0]; l2c(l,out);
120 l=ll[1]; l2c(l,out);
pcbc_enc.c 35 * The word 'cryptographic' can be left out if the rouines from the library
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
68 unsigned char *out,*iv; local
71 out=output;
94 l2c(tout0,out);
95 l2c(tout1,out);
112 l2c(tout0,out);
113 l2c(tout1,out);
116 l2cn(tout0,tout1,out,length);
  /external/openssl/crypto/pkcs12/
p12_decr.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
75 unsigned char *out; local
87 if(!(out = OPENSSL_malloc(inlen + EVP_CIPHER_CTX_block_size(&ctx)))) {
92 if (!EVP_CipherUpdate(&ctx, out, &i, in, inlen))
94 OPENSSL_free(out);
95 out = NULL;
101 if(!EVP_CipherFinal_ex(&ctx, out + i, &i)) {
102 OPENSSL_free(out);
103 out = NULL;
109 if (data) *data = out;
123 unsigned char *out; local
    [all...]
  /external/openssl/crypto/rc4/
rc4.c 35 * The word 'cryptographic' can be left out if the rouines from the library
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
69 " -out arg - output file - default stdout\n",
76 FILE *in=NULL,*out=NULL; local
93 else if (strcmp(*argv,"-out") == 0)
134 out=stdout;
137 out=fopen(outfile,"w");
138 if (out == NULL)
150 setmode(fileno(out),O_BINARY);
181 i=fwrite(buf,(unsigned int)i,1,out);
    [all...]
  /external/owasp/sanitizer/
Makefile 11 @echo " The output will be available under out/."
13 @echo " classes - Put Java .class files under out/."
25 @echo " directories of trunk checked out."
54 out:
55 mkdir -p out
57 out/classes: out
58 mkdir -p out/classes
60 out/genfiles: out
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
ElementAndAttributePolicyBasedSanitizerPolicy.java 26 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
50 private final HtmlStreamEventReceiver out; field in class:ElementAndAttributePolicyBasedSanitizerPolicy
63 HtmlStreamEventReceiver out,
66 this.out = out;
79 out.openDocument();
86 out.closeTag(tagNameToClose);
91 out.closeDocument();
96 out.text(textChunk);
156 out.closeTag(tagNameToClose)
    [all...]
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmshalf.c 21 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
510 } out; local
    [all...]
  /external/protobuf/java/src/device/main/java/com/google/protobuf/nano/android/
ParcelableExtendableMessageNano.java 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
66 public void writeToParcel(Parcel out, int flags) {
67 ParcelingUtil.writeToParcel(getClass(), this, out); local