HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 276 - 300 of 3043) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/openssl/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/chromium_org/third_party/openssl/openssl/crypto/bn/
exptest.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
77 BIO *out=NULL; local
101 out=BIO_new(BIO_s_file());
103 if (out == NULL) EXIT(1);
104 BIO_set_fp(out,stdout,BIO_NOCLOSE);
127 ERR_print_errors(out);
135 ERR_print_errors(out);
143 ERR_print_errors(out);
151 ERR_print_errors(out);
    [all...]
  /external/chromium_org/third_party/openssl/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/chromium_org/third_party/openssl/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/chromium_org/third_party/openssl/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/chromium_org/third_party/opus/src/tests/
test_opus_padding.c 24 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
49 opus_int16 *out = malloc(FRAMESIZE*CHANNELS*sizeof(*out)); local
52 if (!in || !out) {
53 fprintf(stderr, "FAIL (out of memory)\n");
62 result = opus_decode(decoder, in, PACKETSIZE, out, FRAMESIZE, 0);
66 free(out);
  /external/chromium_org/third_party/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/chromium_org/third_party/sqlite/src/src/
vdbetrace.c 76 StrAccum out; /* Accumulate the output here */ local
80 sqlite3StrAccumInit(&out, zBase, sizeof(zBase),
82 out.db = db;
87 sqlite3StrAccumAppend(&out, "-- ", 3);
88 sqlite3StrAccumAppend(&out, zStart, (int)(zRawSql-zStart));
94 sqlite3StrAccumAppend(&out, zRawSql, n);
118 sqlite3StrAccumAppend(&out, "NULL", 4);
120 sqlite3XPrintf(&out, "%lld", pVar->u.i);
122 sqlite3XPrintf(&out, "%!.15g", pVar->r);
132 sqlite3XPrintf(&out, "'%.*q'", utf8.n, utf8.z)
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
stack_trace_table.cc 27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
116 void** out = new void*[out_len]; local
117 if (out == NULL) {
120 out_len * sizeof(*out));
129 out[idx++] = reinterpret_cast<void*>(static_cast<uintptr_t>(b->count));
130 out[idx++] = reinterpret_cast<void*>(b->trace.size); // cumulative size
131 out[idx++] = reinterpret_cast<void*>(b->trace.depth);
133 out[idx++] = b->trace.stack[d];
138 out[idx++] = NULL;
156 return out;
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
stack_trace_table.cc 27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
116 void** out = new void*[out_len]; local
117 if (out == NULL) {
120 out_len * sizeof(*out));
129 out[idx++] = reinterpret_cast<void*>(static_cast<uintptr_t>(b->count));
130 out[idx++] = reinterpret_cast<void*>(b->trace.size); // cumulative size
131 out[idx++] = reinterpret_cast<void*>(b->trace.depth);
133 out[idx++] = b->trace.stack[d];
138 out[idx++] = static_cast<uintptr_t>(0);
156 return out;
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
combpath_test.c 23 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
44 const char *out; member in struct:Test_Entry
96 char *out; local
104 out = test->combpath(test->from, test->to);
106 if (strcmp(out, test->out) != 0) {
109 funcname, test->from, test->to, test->out, out);
110 yasm_xfree(out);
114 yasm_xfree(out);
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/genmacro/
genmacro.c 25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 FILE *in, *out; local
48 fprintf(stderr, "Usage: %s <out> <var> <file> [<file> ...]\n", argv[0]);
52 out = fopen(argv[1], "wt");
54 if (!out) {
61 fprintf(out, "/* This file auto-generated from standard.mac by genmacro.c"
69 fclose(out);
92 fclose(out);
114 fprintf(out, " \"");
117 fputc('\\', out);
    [all...]
  /external/chromium_org/tools/json_schema_compiler/test/
choices_unittest.cc 118 ChoiceType out; local
119 ASSERT_TRUE(ChoiceType::Populate(value, &out));
120 ASSERT_TRUE(out.integers.as_integer.get());
121 EXPECT_FALSE(out.integers.as_integers.get());
122 EXPECT_EQ(4, *out.integers.as_integer);
124 EXPECT_FALSE(out.strings->as_string.get());
125 ASSERT_TRUE(out.strings->as_strings.get());
126 EXPECT_EQ(strings, *out.strings->as_strings);
139 ChoiceType out; local
140 ASSERT_TRUE(ChoiceType::Populate(value, &out));
    [all...]
  /external/chromium_org/ui/gfx/
color_utils_unittest.cc 49 SkColor out = HSLToSkColor(hsl, 255); local
50 EXPECT_EQ(SkColorGetR(out), SkColorGetR(rgb));
51 EXPECT_EQ(SkColorGetG(out), SkColorGetG(rgb));
52 EXPECT_EQ(SkColorGetB(out), SkColorGetB(rgb));
62 SkColor out = HSLToSkColor(hsl, 255); local
63 EXPECT_EQ(SkColorGetR(out), SkColorGetR(rgb));
64 EXPECT_EQ(SkColorGetG(out), SkColorGetG(rgb));
65 EXPECT_EQ(SkColorGetB(out), SkColorGetB(rgb));
  /external/eigen/unsupported/doc/examples/
FFT.cpp 36 T out=0; local
38 out += mag2(vec[k]);
39 return out;
45 T out=0; local
47 out += mag2(vec[k]);
48 return out;
  /external/guava/guava/src/com/google/common/io/
FileBackedOutputStream.java 47 private OutputStream out; field in class:FileBackedOutputStream
94 out = memory;
154 out = memory;
167 out.write(b);
177 out.write(b, off, len);
181 out.close();
185 out.flush();
205 out = transfer;
  /external/guava/guava-tests/test/com/google/common/io/
CountingOutputStreamTest.java 30 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
31 CountingOutputStream counter = new CountingOutputStream(out);
32 assertEquals(written, out.size());
37 assertEquals(written, out.size());
43 assertEquals(written, out.size());
48 assertEquals(written, out.size());
53 assertEquals(written, out.size());
62 assertEquals(written, out.size());
  /external/icu/icu4c/source/layout/
ArabicLayoutEngine.cpp 187 le_int32 i, dir = 1, out = 0; local
190 out = count - 1;
196 for (i = 0; i < count; i += 1, out += dir) {
197 glyphStorage[out] = (LEGlyphID) chars[offset + i];
CanonShaping.cpp 63 le_int32 out = 0, dir = 1; local
66 out = charCount - 1;
70 for (i = 0; i < charCount; i += 1, out += dir) {
74 glyphStorage.setCharIndex(out, index, success);
  /external/icu/icu4c/source/samples/citer/
citer.cpp 18 static UFILE *out; variable
22 u_fprintf(out, "%S", &s);
28 u_fprintf(out, "%C", (UChar) ch);
30 u_fprintf(out, "[CharacterIterator::DONE = 0xFFFF]");
32 u_fprintf(out, "[%X]", ch);
53 u_fprintf(out, "testText = %s", testChars);
56 u_fprintf(out, "clone() or equals() failed: Two clones tested unequal\n");
64 u_fprintf(out, "iter.getText() != clone.getText()\n");
67 u_fprintf(out, "\n");
70 u_fprintf(out, "Forward = ")
    [all...]
  /external/jemalloc/test/unit/
hash.c 26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
84 uint32_t out; local
85 out = hash_x86_32(key, i, 256-i);
86 memcpy(&hashes[i*hashbytes], &out, hashbytes);
89 uint64_t out[2]; local
90 hash_x86_128(key, i, 256-i, out);
91 memcpy(&hashes[i*hashbytes], out, hashbytes);
94 uint64_t out[2]; local
95 hash_x64_128(key, i, 256-i, out);
96 memcpy(&hashes[i*hashbytes], out, hashbytes)
105 uint32_t out = hash_x86_32(hashes, hashbytes*256, 0); local
109 uint64_t out[2]; local
114 uint64_t out[2]; local
    [all...]
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
PropertyInfo.java 16 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
245 // Write the object out to a byte array
247 ObjectOutputStream out = new ObjectOutputStream(bos); local
248 out.writeObject(this);
249 out.flush();
250 out.close();

Completed in 2507 milliseconds

<<11121314151617181920>>