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

<<51525354555657585960>>

  /external/mesa3d/src/gallium/state_trackers/vega/
shaders_cache.c 22 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
96 "DCL OUT[0], COLOR, CONSTANT\n"
134 struct ureg_dst out, *temp = NULL; local
182 out = ureg_DECL_output(ureg, TGSI_SEMANTIC_COLOR, 0);
209 &out,
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv10_state_frag.c 22 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
76 uint32_t out; member in struct:combiner_state
91 (rc)->in = (rc)->out = 0; \
225 rc->out = RC_OUT_AB;
232 rc->out = RC_OUT_AB;
249 rc->out = RC_OUT_SUM |
259 rc->out = RC_OUT_SUM;
268 rc->out = RC_OUT_SUM;
276 rc->out = RC_OUT_DOT_AB | RC_OUT_SCALE_4;
287 rc->out |= RC_OUT_SCALE_1
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_vb_texgen.c 21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
257 GLvector4f *out = &store->texcoord[unit]; local
259 build_f_tab[VB->EyePtr->size]( out->start,
260 out->stride,
264 out->flags |= (in->flags & VEC_SIZE_FLAGS) | VEC_SIZE_3;
265 out->count = VB->Count;
266 out->size = MAX2(in->size, 3);
268 _mesa_copy_tab[0x8]( out, in );
279 GLvector4f *out = &store->texcoord[unit]; local
281 GLfloat (*texcoord)[4] = (GLfloat (*)[4])out->start
307 GLvector4f *out = &store->texcoord[unit]; local
341 GLvector4f *out = &store->texcoord[unit]; local
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
DecoderConfigDescriptor.java 113 ByteBuffer out = ByteBuffer.allocate(serializedSize()); local
114 IsoTypeWriter.writeUInt8(out, 4);
115 IsoTypeWriter.writeUInt8(out, serializedSize() - 2);
116 IsoTypeWriter.writeUInt8(out, objectTypeIndication);
118 IsoTypeWriter.writeUInt8(out, flags);
119 IsoTypeWriter.writeUInt24(out, bufferSizeDB);
120 IsoTypeWriter.writeUInt32(out, maxBitRate);
121 IsoTypeWriter.writeUInt32(out, avgBitRate);
122 out.put(audioSpecificInfo.serialize().array());
123 return out;
    [all...]
  /external/objenesis/tck/test/org/objenesis/tck/
ObjenesisTest.java 65 PrintStream out = new PrintStream(buffer); local
66 out.println("Exception when instantiating " + currentCandidate + " with "
68 exception.printStackTrace(out);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Response.java 164 // TODO: move out of public API
173 // TODO: move out of public API
182 // TODO: move out of public API
194 // TODO: move out of public API
264 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
265 Util.copy(byteStream(), out); local
266 return out.toByteArray();
464 // TODO: move out of public API
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
Util.java 231 return false; // Ran out of time.
235 * Copies all of the bytes from {@code in} to {@code out}. Neither stream is closed.
238 public static int copy(InputStream in, OutputStream out) throws IOException {
244 out.write(buffer, 0, c);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
Huffman.java 51 void encode(byte[] data, OutputStream out) throws IOException {
66 out.write(((int) (current >> n)));
73 out.write((int) current);
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
Http20Draft09Test.java 485 OkBuffer out = new OkBuffer(); local
486 new HpackDraft05.Writer(out).writeHeaders(sentHeaders);
487 return out;
491 OkBuffer out = new OkBuffer(); local
492 new Http20Draft09.Writer(out, true).ping(ack, payload1, payload2);
493 return out;
498 OkBuffer out = new OkBuffer(); local
499 new Http20Draft09.Writer(out, true).goAway(lastGoodStreamId, errorCode, debugData);
500 return out;
504 OkBuffer out = new OkBuffer() local
511 OkBuffer out = new OkBuffer(); local
    [all...]
  /external/okhttp/okio/src/test/java/okio/
ByteStringTest.java 100 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
101 ByteString.decodeHex("616263").write(out);
102 assertByteArraysEquals(new byte[] { 0x61, 0x62, 0x63 }, out.toByteArray());
  /external/opencv/otherlibs/highgui/
grfmt_exr.cpp 37 // or tort (including negligence or otherwise) arising in any way out of
325 uchar *out = data; local
340 RGBToGray( (float *)buffer, (float *)out );
360 out[x] = CV_CAST_8U(t);
369 out[x] = CV_CAST_8U(t);
374 out += step;
530 void GrFmtExrReader::RGBToGray( float *in, float *out )
537 out[i] = in[n] * m_chroma.blue[0] + in[n + 1] * m_chroma.green[0] + in[n + 2] * m_chroma.red[0];
541 uchar *o = (uchar *)out;
555 ((int *)out)[i] = int(si[n] * m_chroma.blue[0] + si[n + 1] * m_chroma.green[0] + si[n + 2] * m_chroma.red[0])
    [all...]
  /external/openssl/apps/
crl.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 " -text - print out a text format version\n",
82 " -out arg - output file - default stdout\n",
110 BIO *out=NULL; local
178 else if (strcmp(*argv,"-out") == 0)
350 BIO_printf(bio_err,"out of memory\n");
365 out=BIO_new(BIO_s_file());
366 if (out == NULL)
374 BIO_set_fp(out,stdout,BIO_NOCLOSE)
    [all...]
dgst.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 int do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout,
112 BIO *out = NULL; local
137 BIO_printf(bio_err,"out of memory\n");
166 else if (strcmp(*argv,"-out") == 0)
280 BIO_printf(bio_err,"-out filename output to filename rather than stdout\n");
327 out = BIO_new_file(outfile, "wb");
328 else out = BIO_new_file(outfile, "w");
330 out = BIO_new_fp(stdout, BIO_NOCLOSE)
    [all...]
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
73 int set_hex(char *in,unsigned char *out,int size);
125 BIO *in=NULL,*out=NULL,*b64=NULL,*benc=NULL,*rbio=NULL,*wbio=NULL; local
175 else if (strcmp(*argv,"-out") == 0)
300 BIO_printf(bio_err,"%-14s output file\n","-out <file>");
389 out=BIO_new(BIO_s_file());
390 if ((in == NULL) || (out == NULL))
398 BIO_set_callback(out,BIO_debug_callback);
400 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:__anon32311
  /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...]

Completed in 1482 milliseconds

<<51525354555657585960>>