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

<<41424344454647484950>>

  /external/openssl/apps/
dhparam.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
102 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
138 * -out arg - output file - default stdout
157 BIO *in=NULL,*out=NULL; local
200 else if (strcmp(*argv,"-out") == 0)
247 BIO_printf(bio_err," -out arg output file\n");
410 out=BIO_new(BIO_s_file());
411 if (out == NULL)
418 BIO_set_fp(out,stdout,BIO_NOCLOSE)
    [all...]
dsa.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
80 * -out arg - output file - default stdout
104 BIO *in=NULL,*out=NULL; local
154 else if (strcmp(*argv,"-out") == 0)
211 BIO_printf(bio_err," -out arg output file\n");
233 BIO_printf(bio_err," -noout don't print key out\n");
250 out=BIO_new(BIO_s_file());
251 if ((in == NULL) || (out == NULL))
295 BIO_set_fp(out,stdout,BIO_NOCLOSE)
    [all...]
dsaparam.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 * -out arg - output file - default stdout
116 BIO *in=NULL,*out=NULL; local
162 else if (strcmp(*argv,"-out") == 0)
222 BIO_printf(bio_err," -out arg output file\n");
241 out=BIO_new(BIO_s_file());
242 if ((in == NULL) || (out == NULL))
260 BIO_set_fp(out,stdout,BIO_NOCLOSE);
264 out = BIO_push(tmpbio, out)
    [all...]
ec.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
76 * -out arg - output file - default stdout
93 BIO *in = NULL, *out = NULL; local
139 else if (strcmp(*argv,"-out") == 0)
219 BIO_printf(bio_err, " -out arg output file\n");
229 BIO_printf(bio_err, " -noout don't print key out\n");
264 out = BIO_new(BIO_s_file());
265 if ((in == NULL) || (out == NULL))
313 BIO_set_fp(out, stdout, BIO_NOCLOSE);
317 out = BIO_push(tmpbio, out)
    [all...]
genpkey.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
81 BIO *in = NULL, *out = NULL; local
138 else if (!strcmp (*args, "-out"))
201 BIO_printf(bio_err, "-out file output file\n");
226 if (!(out = BIO_new_file (outfile, "wb")))
235 out = BIO_new_fp (stdout, BIO_NOCLOSE);
239 out = BIO_push(tmpbio, out);
267 rv = PEM_write_bio_Parameters(out, pkey);
269 rv = PEM_write_bio_PrivateKey(out, pkey, cipher, NULL, 0
    [all...]
pkcs8.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
75 BIO *in = NULL, *out = NULL; local
194 else if (!strcmp (*args, "-out"))
216 BIO_printf(bio_err, "-out file output file\n");
259 if (!(out = BIO_new_file (outfile, "wb")))
268 out = BIO_new_fp (stdout, BIO_NOCLOSE);
272 out = BIO_push(tmpbio, out);
291 PEM_write_bio_PKCS8_PRIV_KEY_INFO(out, p8inf);
293 i2d_PKCS8_PRIV_KEY_INFO_bio(out, p8inf)
    [all...]
rsa.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
80 * -out arg - output file - default stdout
107 BIO *out=NULL; local
154 else if (strcmp(*argv,"-out") == 0)
220 BIO_printf(bio_err," -out arg output file\n");
239 BIO_printf(bio_err," -noout don't print key out\n");
266 out=BIO_new(BIO_s_file());
308 BIO_set_fp(out,stdout,BIO_NOCLOSE);
312 out = BIO_push(tmpbio, out)
    [all...]
s_cb.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
102 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
284 BIO *out; local
286 out=(BIO *)BIO_get_callback_arg(bio);
287 if (out == NULL) return(ret);
291 BIO_printf(out,"read from %p [%p] (%lu bytes => %ld (0x%lX))\n",
293 BIO_dump(out,argp,(int)ret);
298 BIO_printf(out,"write to %p [%p] (%lu bytes => %ld (0x%lX))\n",
300 BIO_dump(out,argp,(int)ret)
    [all...]
  /external/openssl/crypto/evp/
evp_test.c 46 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
143 unsigned char out[4096]; local
171 if(!EVP_EncryptUpdate(&ctx,out,&outl,plaintext,pn))
177 if(!EVP_EncryptFinal_ex(&ctx,out+outl,&outl2))
191 if(memcmp(out,ciphertext,cn))
194 hexdump(stderr,"Got",out,cn);
210 if(!EVP_DecryptUpdate(&ctx,out,&outl,ciphertext,cn))
216 if(!EVP_DecryptFinal_ex(&ctx,out+outl,&outl2))
230 if(memcmp(out,plaintext,pn))
233 hexdump(stderr,"Got",out,pn)
    [all...]
p5_crpt2.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
67 /* set this to print out info about the keygen algorithm */
83 int keylen, unsigned char *out)
95 p = out;
164 h__dump (out, keylen);
171 int keylen, unsigned char *out)
174 keylen, out);
180 unsigned char out[4]; local
182 PKCS5_PBKDF2_HMAC_SHA1("password", -1, salt, 4, 5, 4, out);
183 fprintf(stderr, "Out %02X %02X %02X %02X\n"
    [all...]
  /external/openssl/crypto/rc2/
rc2test.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
109 unsigned char out[80]; variable
111 char *text="Hello to all people out there";
186 idea_cbc_encrypt((unsigned char *)text,out,strlen(text)+1,&key,iv,1);
188 idea_cbc_encrypt(out,out,8,&dkey,iv,0);
189 idea_cbc_encrypt(&(out[8]),&(out[8]),strlen(text)+1-8,&dkey,iv,0);
190 if (memcmp(text,out,strlen(text)+1) != 0
    [all...]
  /external/oprofile/gui/
oprof_start_util.cpp 162 ostringstream out; local
163 out << "unable to create " << dir << " directory ";
164 out << "cause: " << strerror(errno);
165 QMessageBox::warning(0, 0, out.str().c_str());
  /external/owasp/sanitizer/src/main/org/owasp/html/examples/
UrlTextExample.java 26 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
71 // Figure out which attribute we should look for.
120 public static void run(Appendable out, String... argv) throws IOException {
152 out.append(htmlOut);
156 run(System.out, argv);
157 System.out.println();
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
fx_zlib_crc32.c 21 DYNAMIC_CRC_TABLE and MAKECRCH can be #defined to write out crc32.h.
81 out is a one). We start with the highest power (least significant bit) of
141 /* write out CRC tables to crc32.h */
143 FILE *out; local
145 out = fopen("crc32.h", "w");
146 if (out == NULL) return;
147 fprintf(out, "/* crc32.h -- tables for rapid CRC calculation\n");
148 fprintf(out, " * Generated automatically by crc32.c\n */\n\n");
149 fprintf(out, "local const z_crc_t FAR ");
150 fprintf(out, "crc_table[TBLS][256] =\n{\n {\n")
    [all...]
  /external/proguard/src/proguard/optimize/info/
ParameterUsageMarker.java 141 System.out.print("ParameterUsageMarker: ["+programClass.getName() +"."+programMethod.getName(programClass)+programMethod.getDescriptor(programClass)+"]: ");
144 System.out.print(isParameterUsed(programMethod, index) ? '+' : '-');
146 System.out.println();
  /external/proguard/src/proguard/shrink/
Shrinker.java 110 System.out.println();
130 configuration.printUsage == Configuration.STD_OUT ? System.out :
135 // Print out items that will be removed.
139 if (ps == System.out)
172 System.out.println("Removing unused program classes and class elements...");
173 System.out.println(" Original number of program classes: " + originalProgramClassPoolSize);
174 System.out.println(" Final number of program classes: " + newProgramClassPoolSize);
  /external/protobuf/java/src/main/java/com/google/protobuf/nano/
MessageNanoPrinter.java 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
193 StringBuffer out = new StringBuffer(); local
197 out.append(Character.toLowerCase(currentChar));
199 out.append('_').append(Character.toLowerCase(currentChar));
201 out.append(currentChar);
204 return out.toString();
  /external/qemu/android/
main-common.c 139 /* I'm out of ideas */
281 char* out = getenv("ANDROID_PRODUCT_OUT"); local
283 if (out == NULL || out[0] == 0)
286 if (!path_exists(out)) {
289 out);
304 android_build_out = out;
306 D( "found Android build out: %s", android_build_out );
  /external/qemu/distrib/jpeg-6b/
ansi2knr.c 59 out that there is no warranty for Ghostscript. If Ghostscript is
141 yet worked out a simple rule that can be stated here, but we will often
168 CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE
323 { FILE *in, *out; local
355 out = stdout;
358 out = fopen(argv[2], "w");
359 if ( out == NULL )
369 fprintf(out, "#line 1 \"%s\"\n", argv[1]);
378 convert1(buf, out, 1, convert_varargs);
391 convert1(buf, out, 0, convert_varargs)
    [all...]
  /external/qemu/distrib/libsparse/src/
sparse.c 104 static void sparse_file_write_block(struct output_file *out,
109 write_data_chunk(out, backed_block_len(bb), backed_block_data(bb));
112 write_file_chunk(out, backed_block_len(bb),
116 write_fd_chunk(out, backed_block_len(bb),
120 write_fill_chunk(out, backed_block_len(bb),
126 static int write_all_blocks(struct sparse_file *s, struct output_file *out)
136 write_skip_chunk(out, (int64_t)blocks * s->block_size);
138 sparse_file_write_block(out, bb);
146 write_skip_chunk(out, pad);
157 struct output_file *out; local
177 struct output_file *out; local
205 struct output_file *out; local
    [all...]
  /external/qemu/distrib/zlib-1.2.8/
crc32.c 21 DYNAMIC_CRC_TABLE and MAKECRCH can be #defined to write out crc32.h.
81 out is a one). We start with the highest power (least significant bit) of
141 /* write out CRC tables to crc32.h */
143 FILE *out; local
145 out = fopen("crc32.h", "w");
146 if (out == NULL) return;
147 fprintf(out, "/* crc32.h -- tables for rapid CRC calculation\n");
148 fprintf(out, " * Generated automatically by crc32.c\n */\n\n");
149 fprintf(out, "local const z_crc_t FAR ");
150 fprintf(out, "crc_table[TBLS][256] =\n{\n {\n")
    [all...]
  /external/skia/bench/
QuadTreeBench.cpp 148 SkIRect out = {0, 0, index + 1, index + 1}; local
149 return out;
153 SkIRect out; local
154 out.fLeft = index % GRID_WIDTH;
155 out.fTop = index / GRID_WIDTH;
156 out.fRight = out.fLeft + 1 + rand.nextU() % (GENERATE_EXTENTS / 3);
157 out.fBottom = out.fTop + 1 + rand.nextU() % (GENERATE_EXTENTS / 3);
158 return out;
162 SkIRect out; local
171 SkIRect out; local
    [all...]
RTreeBench.cpp 159 SkIRect out = {0, 0, index + 1, index + 1}; local
160 return out;
164 SkIRect out; local
165 out.fLeft = index % GRID_WIDTH;
166 out.fTop = index / GRID_WIDTH;
167 out.fRight = out.fLeft + 1 + rand.nextU() % (GENERATE_EXTENTS / 3);
168 out.fBottom = out.fTop + 1 + rand.nextU() % (GENERATE_EXTENTS / 3);
169 return out;
172 SkIRect out; local
181 SkIRect out; local
    [all...]
  /external/skia/experimental/Intersection/
EdgeWalkerPolygon4x4_Test.cpp 37 SkPath path, out; local
63 testSimplifyx(path, false, out, state, pathStr);
67 testSimplifyx(path, true, out, state, pathStr);
132 SkPath path, out; local
154 testSimplifyx(path, false, out, state, pathStr);
158 testSimplifyx(path, true, out, state, pathStr);
227 SkPath path, out; local
249 testSimplifyx(path, false, out, state, pathStr);
253 testSimplifyx(path, true, out, state, pathStr);
EdgeWalkerPolygons_Mismatches.cpp 1608 SkPath path, out; local
    [all...]

Completed in 195 milliseconds

<<41424344454647484950>>