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

<<51525354555657585960>>

  /external/openssl/apps/
ecparam.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
93 * -out arg - output file - default stdout
130 BIO *in = NULL, *out = NULL; local
170 else if (strcmp(*argv,"-out") == 0)
258 BIO_printf(bio_err, " -out arg output file - "
303 out=BIO_new(BIO_s_file());
304 if ((in == NULL) || (out == NULL))
322 BIO_set_fp(out,stdout,BIO_NOCLOSE);
326 out = BIO_push(tmpbio, out);
    [all...]
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
75 int set_hex(char *in,unsigned char *out,int size);
127 BIO *in=NULL,*out=NULL,*b64=NULL,*benc=NULL,*rbio=NULL,*wbio=NULL; local
177 else if (strcmp(*argv,"-out") == 0)
302 BIO_printf(bio_err,"%-14s output file\n","-out <file>");
397 out=BIO_new(BIO_s_file());
398 if ((in == NULL) || (out == NULL))
406 BIO_set_callback(out,BIO_debug_callback);
408 BIO_set_callback_arg(out,(char *)bio_err)
    [all...]
passwd.c 43 char *passwd, BIO *out, int quiet, int table, int reverse,
70 BIO *in = NULL, *out = NULL; local
84 out = BIO_new(BIO_s_file());
85 if (out == NULL)
87 BIO_set_fp(out, stdout, BIO_NOCLOSE | BIO_FP_TEXT);
91 out = BIO_push(tmpbio, out);
245 if (!do_passwd(passed_salt, &salt, &salt_malloc, passwd, out,
274 if (!do_passwd(passed_salt, &salt, &salt_malloc, passwd, out,
292 if (out)
    [all...]
pkeyutl.c 48 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
83 unsigned char *out, size_t *poutlen,
90 BIO *in = NULL, *out = NULL; local
124 else if (!strcmp(*argv,"-out"))
271 if(!(out = BIO_new_file(outfile, "wb")))
280 out = BIO_new_fp(stdout, BIO_NOCLOSE);
284 out = BIO_push(tmpbio, out);
335 BIO_puts(out, "Signature Verification Failure\n");
337 BIO_puts(out, "Signature Verified Successfully\n")
    [all...]
rsautl.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
88 BIO *in = NULL, *out = NULL; local
126 } else if (!strcmp(*argv,"-out")) {
243 if(!(out = BIO_new_file(outfile, "wb"))) {
249 out = BIO_new_fp(stdout, BIO_NOCLOSE);
253 out = BIO_push(tmpbio, out);
305 if(!ASN1_parse_dump(out, rsa_out, rsa_outlen, 1, -1)) {
308 } else if(hexdump) BIO_dump(out, (char *)rsa_out, rsa_outlen);
309 else BIO_write(out, rsa_out, rsa_outlen)
    [all...]
smime.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
104 BIO *in = NULL, *out = NULL, *indata = NULL; local
356 else if (!strcmp (*args, "-out"))
473 BIO_printf (bio_err, "-out file output file\n");
652 if (!(out = BIO_new_file(outfile, outmode)))
661 out = BIO_new_fp(stdout, BIO_NOCLOSE);
665 out = BIO_push(tmpbio, out);
747 if (!PKCS7_decrypt(p7, key, recip, out, flags))
756 if (PKCS7_verify(p7, other, store, indata, out, flags)
    [all...]
  /external/openssl/crypto/ecdsa/
ecdsatest.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
102 int x9_62_test_internal(BIO *out, int nid, const char *r, const char *s);
181 int x9_62_test_internal(BIO *out, int nid, const char *r_in, const char *s_in)
198 BIO_printf(out, "testing %s: ", OBJ_nid2sn(nid));
204 BIO_printf(out, ".");
205 (void)BIO_flush(out);
210 BIO_printf(out, ".");
211 (void)BIO_flush(out);
220 BIO_printf(out, ".");
221 (void)BIO_flush(out);
529 BIO *out; local
    [all...]
  /external/oprofile/pp/
opreport.cpp 376 format_output::formatter * out; local
384 out = xml_out;
386 out->show_long_filenames(true);
390 out = text_out;
391 out->show_long_filenames(options::long_filenames);
394 out->set_nr_classes(nr_classes);
395 out->show_header(options::show_header);
396 out->vma_format_64bit(choice.hints & cf_64bit_vma);
397 out->show_global_percent(options::global_percent);
403 out->add_format(flags)
457 format_output::formatter * out; local
    [all...]
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
fx_zlib_inflate.c 48 * - Pull out common wnext == 0 case for speed in inflate_fast()
75 * for the in() and out() functions
308 Write out the inffixed.h that is #include'd above. Defining MAKEFIXED also
323 a.out > inffixed.h
615 unsigned in, out; /* save starting available input and output */ local
636 out = left;
    [all...]
gzguts.h 190 unsigned char *out; /* output buffer (double-sized when reading) */ member in struct:__anon12284
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmsgmt.c 21 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
101 cmsToneCurve* out = NULL; local
125 out = cmsBuildTabulatedToneCurveFloat(ContextID, nPoints, SampledPoints);
132 return out;
148 cmsToneCurve *in, *out, *KTone; local
163 out = ComputeKToLstar(ContextID, nPoints, 1,
169 if (out == NULL) {
176 KTone = cmsJoinToneCurve(ContextID, in, out, nPoints);
179 cmsFreeToneCurve(in); cmsFreeToneCurve(out);
202 cmsFloat64Number Thereshold; // The thereshold after which is considered out of gamut
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
ftoutln.c 932 FT_Vector in, out, shift; local
959 out.x = v_next.x - v_cur.x;
960 out.y = v_next.y - v_cur.y;
961 l_out = FT_Vector_Length( &out );
964 out.x = FT_DivFix( out.x, l_out );
965 out.y = FT_DivFix( out.y, l_out );
968 d = FT_MulFix( in.x, out.x ) + FT_MulFix( in.y, out.y )
    [all...]
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_unittest.cc 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
135 void* out; local
139 if (!output->Next(&out, &out_size)) {
145 memcpy(out, in, in_size);
150 memcpy(out, in, out_size);
159 uint8* out = reinterpret_cast<uint8*>(data); local
180 memcpy(out, in, out_size);
187 memcpy(out, in, in_size);
188 out += in_size;
  /external/qemu/distrib/zlib-1.2.8/
gzguts.h 174 unsigned char *out; /* output buffer (double-sized when reading) */ member in struct:__anon13323
inflate.c 48 * - Pull out common wnext == 0 case for speed in inflate_fast()
75 * for the in() and out() functions
308 Write out the inffixed.h that is #include'd above. Defining MAKEFIXED also
323 a.out > inffixed.h
615 unsigned in, out; /* save starting available input and output */ local
636 out = left;
    [all...]
  /external/qemu/hw/timer/
i8254.c 21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
92 int out; local
98 out = (d >= s->count);
101 out = (d < s->count);
105 out = 1;
107 out = 0;
110 out = (d % s->count) < ((s->count + 1) >> 1);
114 out = (d == s->count);
117 return out;
  /external/robolectric/src/main/java/android/net/
Uri__FromAndroid.java 641 * Parses an authority out of the given URI string.
678 * Parses a path out of this given URI string.
1032 // Parse out user info and then port.
1803 ByteArrayOutputStream out = null; local
    [all...]
  /external/skia/experimental/Intersection/
EdgeDemo.cpp 11 SkPath out; local
17 simplify(path, true, out);
19 simplifyx(path, out);
22 showPath(out, "simplified:");
32 canvas->drawPath(out, paint);
EdgeWalkerPolygons_Test.cpp 14 SkPath path, out; local
24 testSimplify(path, true, out, bitmap); // expect |\/|
29 SkPath path, out; local
38 testSimplify(path, true, out, bitmap);
42 SkPath path, out; local
51 testSimplify(path, true, out, bitmap);
55 SkPath path, out; local
64 testSimplify(path, true, out, bitmap);
68 SkPath path, out; local
79 testSimplify(path, true, out, bitmap)
83 SkPath path, out; local
98 SkPath path, out; local
113 SkPath path, out; local
128 SkPath path, out; local
143 SkPath path, out; local
158 SkPath path, out; local
173 SkPath path, out; local
188 SkPath path, out; local
203 SkPath path, out; local
217 SkPath path, out; local
230 SkPath path, out; local
243 SkPath path, out; local
256 SkPath path, out; local
270 SkPath path, out; local
283 SkPath path, out; local
296 SkPath path, out; local
309 SkPath path, out; local
322 SkPath path, out; local
339 SkPath path, out; local
355 SkPath path, out; local
398 SkPath path, out; local
419 SkPath path, out; local
446 SkPath path, out; local
461 SkPath path, out; local
484 SkPath path, out; local
507 SkPath path, out; local
530 SkPath path, out; local
543 SkPath path, out; local
556 SkPath path, out; local
569 SkPath path, out; local
592 SkPath path, out; local
615 SkPath path, out; local
639 SkPath path, out; local
664 SkPath path, out; local
687 SkPath path, out; local
710 SkPath path, out; local
    [all...]
EdgeWalkerRectangles_Test.cpp 14 SkPath path, out; local
19 testSimplify(path, true, out, bitmap);
23 SkPath path, out; local
27 simplify(path, true, out);
29 if (!out.isRect(&rect)) {
38 SkPath path, out; local
42 simplify(path, true, out);
44 if (!out.isRect(&rect)) {
53 SkPath path, out; local
57 simplify(path, true, out);
95 SkPath path, out; local
116 SkPath path, out; local
130 SkPath path, out; local
140 SkPath path, out; local
164 SkPath path, out; local
268 SkPath path, out; local
313 SkPath path, out; local
337 SkPath path, out; local
360 SkPath path, out; local
414 SkPath path, out; local
    [all...]
  /external/skia/src/core/
SkRTree.cpp 15 static inline void join_no_empty_check(const SkIRect& joinWith, SkIRect* out);
125 Node* out = static_cast<Node*>(fNodes.allocThrow(fNodeSize)); local
126 out->fNumChildren = 0;
127 out->fLevel = level;
128 return out;
320 Branch out = (*branches)[0]; local
322 return out;
474 // Expand 'out' to include 'joinWith'
475 static inline void join_no_empty_check(const SkIRect& joinWith, SkIRect* out) {
478 if (joinWith.fLeft < out->fLeft) { out->fLeft = joinWith.fLeft;
    [all...]
  /external/smack/src/org/jivesoftware/smackx/filetransfer/
FileTransfer.java 207 protected void writeToStream(final InputStream in, final OutputStream out)
217 out.write(b, 0, count);
321 * Return the length of bytes written out to the stream.
322 * @return the amount in bytes written out.
346 * The remote user did not respond or the connection timed out.
348 no_response("The remote user did not respond or the connection timed out."),
  /external/smack/src/org/xbill/DNS/
APLRecord.java 139 byte [] out = new byte[length];
140 System.arraycopy(in, 0, out, 0, in.length);
141 return out;
261 rrToWire(DNSOutput out, Compression c, boolean canonical) {
280 out.writeU16(element.family);
281 out.writeU8(element.prefixLength);
282 out.writeU8(wlength);
283 out.writeByteArray(data, 0, length);
LOCRecord.java 283 rrToWire(DNSOutput out, Compression c, boolean canonical) {
284 out.writeU8(0); /* version */
285 out.writeU8(toLOCformat(size));
286 out.writeU8(toLOCformat(hPrecision));
287 out.writeU8(toLOCformat(vPrecision));
288 out.writeU32(latitude);
289 out.writeU32(longitude);
290 out.writeU32(altitude);
295 long out = b >> 4; local
297 if (out > 9 || exp > 9
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
HeaderItem.java 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
165 protected void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity) {
166 int startOffset = out.getCursor();
174 out.annotate(8, "magic: %s", StringUtils.escapeString(magicBuilder.toString()));
175 out.annotate(4, "checksum");
176 out.annotate(20, "signature");
177 out.annotate(4, "file_size: %d", dexFile.readInt(out.getCursor()));
179 headerSize = dexFile.readInt(out.getCursor());
180 out.annotate(4, "header_size: %d", headerSize)
    [all...]

Completed in 55 milliseconds

<<51525354555657585960>>