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

<<21222324252627282930>>

  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
run-command.h 19 * Using .in, .out, .err:
25 * .out, .err: returns the readable pipe end; parent reads from
31 * .out: a writable FD, becomes child's stdout/stderr
37 int out; member in struct:child_process
  /external/lzma/xz-embedded/
xz.h 131 * @out: Beginning of the output buffer. This may be NULL if and only
137 * Only the contents of the output buffer from out[out_pos] onward, and
145 uint8_t *out; member in struct:xz_buf
181 * risk that xz_dec_run() could run out of memory, since xz_dec_run() will
192 * system out of memory when decompressing streams from untrusted sources.
210 * contents of the output buffer from b->out[b->out_pos] onward are
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_cliptest_tmp.h 23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
33 struct vertex_header *out = info->verts; local
54 float *position = out->data[pos];
57 initialize_vertex_header(out);
64 clipvertex = out->data[cv];
67 out->clip[i] = clipvertex[i];
68 out->pre_clip_pos[i] = position[i];
113 out->have_clipdist = 1;
116 clipdist = out->data[cd[0]][i];
118 clipdist = out->data[cd[1]][i-4]
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
Attribute.java 27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
236 * @param out where the attributes must be written.
244 final ByteVector out)
249 out.putShort(cw.newUTF8(attr.type)).putInt(b.length);
250 out.putByteArray(b.data, 0, b.length);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
SLConfigDescriptor.java 81 ByteBuffer out = ByteBuffer.allocate(3); local
82 IsoTypeWriter.writeUInt8(out, 6);
83 IsoTypeWriter.writeUInt8(out, 1);
84 IsoTypeWriter.writeUInt8(out, predefined);
85 return out;
  /external/objenesis/tck/src/org/objenesis/tck/
CandidateLoader.java 54 private final PrintStream out; field in class:CandidateLoader.LoggingErrorHandler
57 * @param out Stream in which to log
59 public LoggingErrorHandler(PrintStream out) {
60 this.out = out;
64 out.println("Class not found : " + name);
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
Spdy3Test.java 97 OkBuffer out = new OkBuffer(); local
98 new Spdy3.Writer(out, true).goAway(lastGoodStreamId, errorCode, debugData);
99 return out;
  /external/okhttp/okio/src/test/java/okio/
OkioTest.java 35 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
36 Sink sink = Okio.sink(out);
38 assertEquals("abb", out.toString("UTF-8"));
40 assertEquals("a" + repeat('b', 9998) + "c", out.toString("UTF-8"));
  /external/openssl/apps/
crl2p7.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
81 * -out arg - output file - default stdout
89 BIO *in=NULL,*out=NULL; local
135 else if (strcmp(*argv,"-out") == 0)
164 BIO_printf(bio_err," -out arg output file\n");
175 out=BIO_new(BIO_s_file());
176 if ((in == NULL) || (out == NULL))
243 BIO_set_fp(out,stdout,BIO_NOCLOSE);
247 out = BIO_push(tmpbio, out)
    [all...]
dh.c 36 * The word 'cryptographic' can be left out if the rouines from the library
51 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
80 * -out arg - output file - default stdout
93 BIO *in=NULL,*out=NULL; local
137 else if (strcmp(*argv,"-out") == 0)
175 BIO_printf(bio_err," -out arg output file\n");
193 out=BIO_new(BIO_s_file());
194 if ((in == NULL) || (out == NULL))
212 BIO_set_fp(out,stdout,BIO_NOCLOSE);
216 out = BIO_push(tmpbio, out)
    [all...]
genrsa.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
106 BIO *out=NULL; local
121 if ((out=BIO_new(BIO_s_file())) == NULL)
132 if (strcmp(*argv,"-out") == 0)
214 BIO_printf(bio_err," -out file output the key to 'file\n");
240 BIO_set_fp(out,stdout,BIO_NOCLOSE);
244 out = BIO_push(tmpbio, out);
250 if (BIO_write_filename(out,outfile) <= 0
    [all...]
pkcs7.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 * -out arg - output file - default stdout
87 BIO *in=NULL,*out=NULL; local
130 else if (strcmp(*argv,"-out") == 0)
168 BIO_printf(bio_err," -out arg output file\n");
186 out=BIO_new(BIO_s_file());
187 if ((in == NULL) || (out == NULL))
223 BIO_set_fp(out,stdout,BIO_NOCLOSE);
227 out = BIO_push(tmpbio, out)
    [all...]
pkey.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
74 BIO *in = NULL, *out = NULL; local
144 else if (!strcmp (*args, "-out"))
192 BIO_printf(bio_err, "-out file output file\n");
212 if (!(out = BIO_new_file (outfile, "wb")))
221 out = BIO_new_fp (stdout, BIO_NOCLOSE);
225 out = BIO_push(tmpbio, out);
244 PEM_write_bio_PUBKEY(out,pkey);
246 PEM_write_bio_PrivateKey(out, pkey, cipher
    [all...]
sess_id.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
78 " -out arg - output file - default stdout\n",
95 BIO *out=NULL; local
130 else if (strcmp(*argv,"-out") == 0)
203 out=BIO_new(BIO_s_file());
204 if (out == NULL)
212 BIO_set_fp(out,stdout,BIO_NOCLOSE);
216 out = BIO_push(tmpbio, out);
    [all...]
spkac.c 51 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
77 * -out arg - output file - default stdout
86 BIO *in = NULL,*out = NULL; local
117 else if (strcmp(*argv,"-out") == 0)
171 BIO_printf(bio_err," -out arg output file\n");
209 if (outfile) out = BIO_new_file(outfile, "w");
211 out = BIO_new_fp(stdout, BIO_NOCLOSE);
215 out = BIO_push(tmpbio, out);
220 if(!out) {
    [all...]
  /external/openssl/crypto/des/
des_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
82 * for pointing this out. */
175 * for pointing this out. */
296 unsigned char *out; local
302 out=output;
322 l2c(tout0,out);
323 l2c(tout1,out);
337 l2c(tout0,out);
338 l2c(tout1,out);
    [all...]
  /external/openssl/crypto/ecdh/
ecdhtest.c 60 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
109 static void *KDF1_SHA1(const void *in, size_t inlen, void *out, size_t *outlen)
116 return SHA1(in, inlen, out);
123 static int test_ecdh_curve(int nid, const char *text, BN_CTX *ctx, BIO *out)
146 BIO_puts(out,"Testing key generation with ");
147 BIO_puts(out,text);
149 BIO_puts(out,"\n");
151 (void)BIO_flush(out);
169 BIO_puts(out," pri 1=");
170 BN_print(out,a->priv_key)
307 BIO *out; local
    [all...]
  /external/openssl/crypto/rand/
randfile.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
185 FILE *out = NULL; local
214 out = fdopen(fd, "wb");
238 out = vms_fopen(file,"rb+",VMS_OPEN_ATTRS);
239 if (out == NULL)
240 out = vms_fopen(file,"wb",VMS_OPEN_ATTRS);
242 if (out == NULL)
243 out = fopen(file,"wb");
245 if (out == NULL) goto err
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
PolicyFactory.java 26 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
69 /** Produces a sanitizer that emits tokens to {@code out}. */
70 public HtmlSanitizer.Policy apply(@Nonnull HtmlStreamEventReceiver out) {
72 out, policies, textContainers);
76 * Produces a sanitizer that emits tokens to {@code out} and that notifies
78 * @param out a renderer that receives approved tokens only.
87 HtmlStreamEventReceiver out, @Nullable HtmlChangeListener<CTX> listener,
90 return apply(out);
93 out, listener, context);
120 StringBuilder out = new StringBuilder(html.length()) local
    [all...]
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
fx_zlib_inffast.c 33 Decode literal, length, and distance codes and write out the resulting
50 LEN -- ran out of enough output space or enough available input
74 unsigned char FAR *out; /* local strm->next_out */ local
76 unsigned char FAR *end; /* while out < end, enough space available */
101 out = strm->next_out - OFF;
102 beg = out - (start - strm->avail_out);
103 end = out + (strm->avail_out - 257);
137 PUP(out) = (unsigned char)(here.val);
186 op = (unsigned)(out - beg); /* max distance in output */
199 PUP(out) = 0
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
ftgloadr.c 375 FT_Outline* out = &target->base.outline; local
379 FT_ARRAY_COPY( out->points, in->points,
381 FT_ARRAY_COPY( out->tags, in->tags,
383 FT_ARRAY_COPY( out->contours, in->contours,
395 out->n_points = (short)num_points;
396 out->n_contours = (short)num_contours;
  /external/proguard/src/proguard/optimize/evaluation/
LivenessAnalyzer.java 197 System.out.println();
198 System.out.println("Liveness analysis: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz));
315 // Print out the liveness of all variables before the instruction.
319 System.out.print((aliveBefore & variableMask) == 0L ? '.' :
324 // Print out the instruction itself.
325 System.out.println(" "+ InstructionFactory.create(codeAttribute.code, offset).toString(offset));
327 // Print out the liveness of all variables after the instruction.
331 System.out.print((aliveAfter & variableMask) == 0L ? '.' :
336 System.out.println();
  /external/qemu/android/tools/
gen-hw-config.py 118 out = sys.stdout variable
120 out = open(targetFile,"wb") variable
122 out.write(targetHeader)
126 out.write("""\
131 out.write("\n")
159 out.write("%s(\n %s,\n %s,\n %s,\n %s,\n %s)\n\n" % \
164 out.write("#undef %s\n" % m)
166 out.write("/* end of auto-generated file */\n")
167 out.close()
  /external/qemu/distrib/ext4_utils/src/
ext2simg.c 182 const char *out = NULL; local
219 out = argv[optind++];
240 if (strcmp(out, "-")) {
241 outfd = open(out, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0644);
  /external/qemu/distrib/zlib-1.2.8/
inffast.c 33 Decode literal, length, and distance codes and write out the resulting
50 LEN -- ran out of enough output space or enough available input
74 unsigned char FAR *out; /* local strm->next_out */ local
76 unsigned char FAR *end; /* while out < end, enough space available */
101 out = strm->next_out - OFF;
102 beg = out - (start - strm->avail_out);
103 end = out + (strm->avail_out - 257);
137 PUP(out) = (unsigned char)(here.val);
186 op = (unsigned)(out - beg); /* max distance in output */
199 PUP(out) = 0
    [all...]

Completed in 469 milliseconds

<<21222324252627282930>>