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
ParcelableMessageNano.java 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
64 public void writeToParcel(Parcel out, int flags) {
65 ParcelingUtil.writeToParcel(getClass(), this, out); local
  /external/protobuf/src/google/protobuf/
message_unittest.cc 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
100 ofstream out; local
104 EXPECT_FALSE(message.SerializeToOstream(&out));
  /external/qemu/android/filesystems/
ramdisk_extractor_unittest.cpp 58 char* out = NULL; local
62 EXPECT_TRUE(android_extractRamdiskFile(path(), "foo", &out, &outSize));
64 EXPECT_TRUE(out);
65 EXPECT_TRUE(!memcmp(out, kExpected, outSize));
66 free(out);
72 char* out = NULL; local
76 EXPECT_TRUE(android_extractRamdiskFile(path(), "bar2", &out, &outSize));
78 EXPECT_TRUE(out);
79 EXPECT_TRUE(!memcmp(out, kExpected, outSize));
80 free(out);
84 char* out = NULL; local
    [all...]
  /external/qemu/audio/
mixeng_template.h 21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
114 struct st_sample *out = dst; local
125 out->l = VOL (glue (conv_, ET) (*in++), vol->l);
126 out->r = VOL (glue (conv_, ET) (*in++), vol->r);
127 out += 1;
134 struct st_sample *out = dst; local
145 out->l = VOL (glue (conv_, ET) (in[0]), vol->l);
146 out->r = out->l;
147 out += 1
156 IN_T *out = (IN_T *) dst; local
168 IN_T *out = (IN_T *) dst; local
    [all...]
rate_template.h 22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
36 struct st_sample ilast, icur, out; local
89 out.l = (ilast.l * (1.0 - t)) + icur.l * t;
90 out.r = (ilast.r * (1.0 - t)) + icur.r * t;
93 out.l = (ilast.l * ((int64_t) UINT_MAX - t) + icur.l * t) >> 32;
94 out.r = (ilast.r * ((int64_t) UINT_MAX - t) + icur.r * t) >> 32;
98 OP (obuf->l, out.l);
99 OP (obuf->r, out.r);
  /external/qemu/distrib/libsparse/src/
img2simg.c 49 int out; local
80 out = STDOUT_FILENO;
82 out = open(argv[2], O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0664);
83 if (out < 0) {
105 ret = sparse_file_write(s, out, false, true, false);
112 close(out);
simg2simg.c 45 int out; local
98 out = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0664);
99 if (out < 0) {
104 ret = sparse_file_write(out_s[i], out, false, true, false);
109 close(out);
  /external/skia/experimental/Intersection/
EdgeWalkerQuadralaterals_Test.cpp 14 SkPath path, out; local
25 testSimplify(path, true, out, bitmap);
29 SkPath path, out; local
40 testSimplify(path, true, out, bitmap);
44 SkPath path, out; local
55 testSimplify(path, true, out, bitmap);
59 SkPath path, out; local
70 testSimplify(path, true, out, bitmap);
74 SkPath path, out; local
85 testSimplify(path, true, out, bitmap)
89 SkPath path, out; local
    [all...]
  /external/smack/src/org/jivesoftware/smack/util/collections/
ReferenceMap.java 146 * Write the map out using a custom routine.
148 private void writeObject(ObjectOutputStream out) throws IOException {
149 out.defaultWriteObject();
150 doWriteObject(out);
  /external/smali/util/src/main/java/org/jf/util/
SmaliHelpFormatter.java 25 * INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
40 System.out.println();
41 System.out.println("Debug Options:");
42 PrintWriter pw = new PrintWriter(System.out);
  /external/valgrind/main/memcheck/tests/
leak-segv-jmp.c 145 UWord out; local
156 : /*out*/ "=r" (out)
160 return out;
  /external/valgrind/main/none/tests/x86/
aad_aam.c 19 unsigned short i,out; local
28 out=i;
35 :"=r"(out), "=r"(flags) /* outputs */
36 :"r"(out) /* input */
46 // printf("%d, %d, %d, ",i,(out>>8)&0xff,out&0xff);
50 if (zf && ((out&0xff)!=0)) {
53 if (pf != parity(out&0xff)) {
56 if (sf != !!(out&0x80)) {
61 if ( ((out>>8)&0xff) != ((i&0xff)/10))
    [all...]
  /external/webp/src/dsp/
neon.h 73 int32x4x4_t out; local
74 out.val[0] = out01.val[0];
75 out.val[1] = out01.val[1];
76 out.val[2] = out23.val[0];
77 out.val[3] = out23.val[1];
78 return out;

Completed in 54 milliseconds

<<11121314151617181920>>