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

<<41424344454647484950>>

  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_driver.h 18 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
120 struct nv50_ir_varying out[PIPE_MAX_SHADER_OUTPUTS]; member in struct:nv50_ir_prog_info
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_wm_fp.c 23 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
165 printf("%s: out of temporaries\n", __FILE__);
249 * and brw_wm_pass*.c wants to optimize them out by shuffling references around
293 /* Emit the out calculations, and hold onto the results. Use
604 /* This will get optimized out in general, but it ensures that we
683 struct prog_instruction *out; local
695 out = emit_op(c, OPCODE_MOV,
701 out->SrcReg[0].Negate = NEGATE_NONE;
702 out->SrcReg[0].Abs = 1;
1090 struct prog_instruction *out; local
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_vertex_generic.c 22 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
53 GLfloat *out = (GLfloat *)v; local
56 out[0] = vp[0] * in[0] + vp[12];
57 out[1] = vp[5] * in[1] + vp[13];
58 out[2] = vp[10] * in[2] + vp[14];
59 out[3] = in[3];
65 GLfloat *out = (GLfloat *)v; local
68 out[0] = vp[0] * in[0] + vp[12];
69 out[1] = vp[5] * in[1] + vp[13];
70 out[2] = vp[10] * in[2] + vp[14]
77 GLfloat *out = (GLfloat *)v; local
89 GLfloat *out = (GLfloat *)v; local
101 GLfloat *out = (GLfloat *)v; local
112 GLfloat *out = (GLfloat *)v; local
123 GLfloat *out = (GLfloat *)v; local
134 GLfloat *out = (GLfloat *)v; local
144 GLfloat *out = (GLfloat *)v; local
158 GLfloat *out = (GLfloat *)(v); local
169 GLfloat *out = (GLfloat *)(v); local
180 GLfloat *out = (GLfloat *)(v); local
191 GLfloat *out = (GLfloat *)(v); local
202 GLfloat *out = (GLfloat *)(v); local
219 GLfloat *out = (GLfloat *)(v); local
229 GLfloat *out = (GLfloat *)(v); local
239 GLfloat *out = (GLfloat *)(v); local
250 GLfloat *out = (GLfloat *)(v); local
259 GLfloat *out = (GLfloat *)(v); local
268 GLfloat *out = (GLfloat *)(v); local
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
AudioSpecificConfig.java 512 int out = 4; local
514 out += gaSpecificConfigSize();
518 return out;
522 ByteBuffer out = ByteBuffer.allocate(serializedSize()); local
523 IsoTypeWriter.writeUInt8(out, 5);
524 IsoTypeWriter.writeUInt8(out, serializedSize() - 2);
525 BitWriterBuffer bwb = new BitWriterBuffer(out);
535 return out;
    [all...]
  /external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
WebSocketFrame.java 172 //System.out.println(Integer.toBinaryString(read) + "/" + read + "/" + Integer.toHexString(read));
240 public void write(OutputStream out) throws IOException {
246 out.write(header);
250 out.write(isMasked() ? 0x80 | (byte) _payloadLength : (byte) _payloadLength);
252 out.write(isMasked() ? 0xFE : 126);
253 out.write(_payloadLength >>> 8);
254 out.write(_payloadLength);
256 out.write(isMasked() ? 0xFF : 127);
257 out.write(_payloadLength >>> 56 & 0); //integer only contains 31 bit
258 out.write(_payloadLength >>> 48 & 0)
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
HttpResponseCache.java 359 // Since we don't override "write(int oneByte)", we can write directly to "out"
361 out.write(buffer, offset, length);
490 OutputStream out = editor.newOutputStream(ENTRY_METADATA); local
491 Writer writer = new BufferedWriter(new OutputStreamWriter(out, UTF_8));
  /external/opencv/cv/src/
cvinpaint.cpp 37 // or tort (including negligence or otherwise) arising in any way out of
280 icvTeleaInpaintFMM(const CvMat *f, CvMat *t, CvMat *out, int range, CvPriorityQueueFloat *Heap ) {
284 if (CV_MAT_CN(out->type)==3) {
352 gradI.x=(float)((CV_MAT_3COLOR_ELEM(*out,uchar,km,lp+1,color)-CV_MAT_3COLOR_ELEM(*out,uchar,km,lm-1,color)))*2.0f;
354 gradI.x=(float)((CV_MAT_3COLOR_ELEM(*out,uchar,km,lp+1,color)-CV_MAT_3COLOR_ELEM(*out,uchar,km,lm,color)));
358 gradI.x=(float)((CV_MAT_3COLOR_ELEM(*out,uchar,km,lp,color)-CV_MAT_3COLOR_ELEM(*out,uchar,km,lm-1,color)));
365 gradI.y=(float)((CV_MAT_3COLOR_ELEM(*out,uchar,kp+1,lm,color)-CV_MAT_3COLOR_ELEM(*out,uchar,km-1,lm,color)))*2.0f
731 CvMat *mask = 0, *band = 0, *f = 0, *t = 0, *out = 0; local
    [all...]
  /external/openssl/apps/
cms.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
73 static void receipt_request_print(BIO *out, CMS_ContentInfo *cms);
120 BIO *in = NULL, *out = NULL, *indata = NULL, *rctin = NULL; local
505 else if (!strcmp (*args, "-out"))
636 BIO_printf (bio_err, "-out file output file\n");
871 if (!(out = BIO_new_file(outfile, outmode)))
880 out = BIO_new_fp(stdout, BIO_NOCLOSE);
884 out = BIO_push(tmpbio, out);
1079 if (!CMS_decrypt(cms, NULL, NULL, indata, out, flags)
    [all...]
ocsp.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
102 static int print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req,
146 BIO *out = NULL; local
181 if (!strcmp(*args, "-out"))
586 BIO_printf (bio_err, "-out file output filename\n");
634 if(outfile) out = BIO_new_file(outfile, "w");
635 else out = BIO_new_fp(stdout, BIO_NOCLOSE);
637 if(!out)
745 if (req_text && req) OCSP_REQUEST_print(out, req, 0);
831 BIO_printf(out, "Responder Error: %s (%d)\n"
    [all...]
  /external/openssl/crypto/des/
des.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
97 int uufread(unsigned char *out,int size,unsigned int num,FILE *fp);
98 int uuencode(unsigned char *in,int num,unsigned char *out);
99 int uudecode(unsigned char *in,int num,unsigned char *out);
133 char *in=NULL,*out=NULL; local
229 else if (out == NULL)
230 out=argv[i];
264 (out != NULL) &&
267 (stat(out,&outs) != -1) &
    [all...]
  /external/openssl/crypto/evp/
e_aes.c 45 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
92 unsigned char *out, size_t length,
117 void vpaes_encrypt(const unsigned char *in, unsigned char *out,
119 void vpaes_decrypt(const unsigned char *in, unsigned char *out,
123 unsigned char *out,
129 void bsaes_cbc_encrypt(const unsigned char *in, unsigned char *out,
132 void bsaes_ctr32_encrypt_blocks(const unsigned char *in, unsigned char *out,
135 void bsaes_xts_encrypt(const unsigned char *inp, unsigned char *out,
138 void bsaes_xts_decrypt(const unsigned char *inp, unsigned char *out,
143 void AES_ctr32_encrypt(const unsigned char *in, unsigned char *out,
878 EVP_CIPHER_CTX *out = ptr; local
1152 EVP_CIPHER_CTX *out = ptr; local
1353 EVP_CIPHER_CTX *out = ptr; local
    [all...]
  /external/oprofile/gui/
oprof_start.cpp 372 ofstream out(name.c_str());
373 if (!out) {
627 error << "buffer size out of range: " << temp
642 error << "buffer watershed out of range: " << temp
657 error << "cpu buffer size out of range: " << temp
671 error << "note table size out of range: " << temp
685 error << "callgraph depth out of range: " << temp
869 ostringstream out; local
871 out << "event " << descr.name << " count of range: "
877 QMessageBox::warning(this, 0, out.str().c_str())
884 ostringstream out; local
    [all...]
  /external/oprofile/libpp/
arrange_profiles.cpp 323 // If we're splitting on event anyway, clear out the
515 ostringstream out; local
516 out << "sanitize_profile_sample_files(): sample file "
520 throw op_fatal_error(out.str());
696 ostream & operator<<(ostream & out, profile_sample_files const & sample_files)
698 out << "sample_filename: " << sample_files.sample_filename << endl;
699 out << "callgraph filenames:\n";
701 ostream_iterator<string>(out, "\n"));
702 return out;
705 ostream & operator<<(ostream & out, profile_dep_set const & pdep_set
    [all...]
format_output.cpp 42 ostringstream out; local
49 out << filename << ":" << floc.linenr;
51 out << "(no location information)";
53 return out.str();
58 ostringstream out; local
61 out << hex << setw(width) << setfill('0') << vma;
63 return out.str();
159 void formatter::output_header(ostream & out)
168 padding = output_header_field(out, ff_vma, padding);
173 padding = output_header_field(out,
304 ostringstream out; local
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TestMax.java 40 public Target.Floaty out; field in class:TestMax.ArgumentsFloatFloatFloat
47 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local
49 script.forEach_testMaxFloatFloatFloat(in, out);
50 verifyResultsMaxFloatFloatFloat(in, in1, out, false);
55 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local
57 scriptRelaxed.forEach_testMaxFloatFloatFloat(in, out);
58 verifyResultsMaxFloatFloatFloat(in, in1, out, true);
64 private void verifyResultsMaxFloatFloatFloat(Allocation in, Allocation in1, Allocation out, boolean relaxed) {
70 out.copyTo(arrayOut);
77 // Figure out what the outputs should have been
116 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local
124 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local
185 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local
193 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local
254 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local
262 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local
322 public byte out; field in class:TestMax.ArgumentsCharCharChar
329 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 1), INPUTSIZE); local
337 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 1), INPUTSIZE); local
394 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 2), INPUTSIZE); local
402 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 2), INPUTSIZE); local
459 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 3), INPUTSIZE); local
467 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 3), INPUTSIZE); local
524 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 4), INPUTSIZE); local
532 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 4), INPUTSIZE); local
588 public byte out; field in class:TestMax.ArgumentsUcharUcharUchar
595 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 1), INPUTSIZE); local
603 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 1), INPUTSIZE); local
660 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 2), INPUTSIZE); local
668 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 2), INPUTSIZE); local
725 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 3), INPUTSIZE); local
733 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 3), INPUTSIZE); local
790 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 4), INPUTSIZE); local
798 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 4), INPUTSIZE); local
854 public short out; field in class:TestMax.ArgumentsShortShortShort
861 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 1), INPUTSIZE); local
869 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 1), INPUTSIZE); local
926 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 2), INPUTSIZE); local
934 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 2), INPUTSIZE); local
991 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 3), INPUTSIZE); local
999 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 3), INPUTSIZE); local
1056 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 4), INPUTSIZE); local
1064 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 4), INPUTSIZE); local
1120 public short out; field in class:TestMax.ArgumentsUshortUshortUshort
1127 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 1), INPUTSIZE); local
1135 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 1), INPUTSIZE); local
1192 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 2), INPUTSIZE); local
1200 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 2), INPUTSIZE); local
1257 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 3), INPUTSIZE); local
1265 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 3), INPUTSIZE); local
1322 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 4), INPUTSIZE); local
1330 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 4), INPUTSIZE); local
1386 public int out; field in class:TestMax.ArgumentsIntIntInt
1393 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 1), INPUTSIZE); local
1401 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 1), INPUTSIZE); local
1458 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 2), INPUTSIZE); local
1466 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 2), INPUTSIZE); local
1523 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 3), INPUTSIZE); local
1531 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 3), INPUTSIZE); local
1588 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 4), INPUTSIZE); local
1596 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 4), INPUTSIZE); local
1652 public int out; field in class:TestMax.ArgumentsUintUintUint
1659 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 1), INPUTSIZE); local
1667 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 1), INPUTSIZE); local
1724 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 2), INPUTSIZE); local
1732 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 2), INPUTSIZE); local
1789 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 3), INPUTSIZE); local
1797 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 3), INPUTSIZE); local
1854 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 4), INPUTSIZE); local
1862 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 4), INPUTSIZE); local
1918 public long out; field in class:TestMax.ArgumentsLongLongLong
1925 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 1), INPUTSIZE); local
1933 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 1), INPUTSIZE); local
1990 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 2), INPUTSIZE); local
1998 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 2), INPUTSIZE); local
2055 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 3), INPUTSIZE); local
2063 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 3), INPUTSIZE); local
2120 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 4), INPUTSIZE); local
2128 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 4), INPUTSIZE); local
2184 public long out; field in class:TestMax.ArgumentsUlongUlongUlong
2191 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 1), INPUTSIZE); local
2199 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 1), INPUTSIZE); local
2256 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 2), INPUTSIZE); local
2264 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 2), INPUTSIZE); local
2321 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 3), INPUTSIZE); local
2329 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 3), INPUTSIZE); local
2386 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 4), INPUTSIZE); local
2394 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 4), INPUTSIZE); local
    [all...]
TestMin.java 40 public Target.Floaty out; field in class:TestMin.ArgumentsFloatFloatFloat
47 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local
49 script.forEach_testMinFloatFloatFloat(in, out);
50 verifyResultsMinFloatFloatFloat(in, in1, out, false);
55 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local
57 scriptRelaxed.forEach_testMinFloatFloatFloat(in, out);
58 verifyResultsMinFloatFloatFloat(in, in1, out, true);
64 private void verifyResultsMinFloatFloatFloat(Allocation in, Allocation in1, Allocation out, boolean relaxed) {
70 out.copyTo(arrayOut);
77 // Figure out what the outputs should have been
116 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local
124 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local
185 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local
193 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local
254 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local
262 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local
322 public byte out; field in class:TestMin.ArgumentsCharCharChar
329 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 1), INPUTSIZE); local
337 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 1), INPUTSIZE); local
394 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 2), INPUTSIZE); local
402 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 2), INPUTSIZE); local
459 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 3), INPUTSIZE); local
467 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 3), INPUTSIZE); local
524 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 4), INPUTSIZE); local
532 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 4), INPUTSIZE); local
588 public byte out; field in class:TestMin.ArgumentsUcharUcharUchar
595 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 1), INPUTSIZE); local
603 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 1), INPUTSIZE); local
660 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 2), INPUTSIZE); local
668 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 2), INPUTSIZE); local
725 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 3), INPUTSIZE); local
733 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 3), INPUTSIZE); local
790 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 4), INPUTSIZE); local
798 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 4), INPUTSIZE); local
854 public short out; field in class:TestMin.ArgumentsShortShortShort
861 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 1), INPUTSIZE); local
869 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 1), INPUTSIZE); local
926 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 2), INPUTSIZE); local
934 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 2), INPUTSIZE); local
991 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 3), INPUTSIZE); local
999 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 3), INPUTSIZE); local
1056 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 4), INPUTSIZE); local
1064 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 4), INPUTSIZE); local
1120 public short out; field in class:TestMin.ArgumentsUshortUshortUshort
1127 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 1), INPUTSIZE); local
1135 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 1), INPUTSIZE); local
1192 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 2), INPUTSIZE); local
1200 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 2), INPUTSIZE); local
1257 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 3), INPUTSIZE); local
1265 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 3), INPUTSIZE); local
1322 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 4), INPUTSIZE); local
1330 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 4), INPUTSIZE); local
1386 public int out; field in class:TestMin.ArgumentsIntIntInt
1393 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 1), INPUTSIZE); local
1401 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 1), INPUTSIZE); local
1458 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 2), INPUTSIZE); local
1466 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 2), INPUTSIZE); local
1523 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 3), INPUTSIZE); local
1531 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 3), INPUTSIZE); local
1588 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 4), INPUTSIZE); local
1596 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 4), INPUTSIZE); local
1652 public int out; field in class:TestMin.ArgumentsUintUintUint
1659 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 1), INPUTSIZE); local
1667 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 1), INPUTSIZE); local
1724 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 2), INPUTSIZE); local
1732 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 2), INPUTSIZE); local
1789 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 3), INPUTSIZE); local
1797 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 3), INPUTSIZE); local
1854 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 4), INPUTSIZE); local
1862 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 4), INPUTSIZE); local
1918 public long out; field in class:TestMin.ArgumentsLongLongLong
1925 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 1), INPUTSIZE); local
1933 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 1), INPUTSIZE); local
1990 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 2), INPUTSIZE); local
1998 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 2), INPUTSIZE); local
2055 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 3), INPUTSIZE); local
2063 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 3), INPUTSIZE); local
2120 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 4), INPUTSIZE); local
2128 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 4), INPUTSIZE); local
2184 public long out; field in class:TestMin.ArgumentsUlongUlongUlong
2191 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 1), INPUTSIZE); local
2199 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 1), INPUTSIZE); local
2256 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 2), INPUTSIZE); local
2264 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 2), INPUTSIZE); local
2321 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 3), INPUTSIZE); local
2329 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 3), INPUTSIZE); local
2386 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 4), INPUTSIZE); local
2394 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 4), INPUTSIZE); local
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
HttpsURLConnectionTest.java 228 System.out.println("Expected exception was thrown: "
725 System.out.println("Got expected IOException: "
764 System.out.println("Expected exception was thrown: "
783 System.out.println();
784 System.out.println("------------------------");
785 System.out.println("------ " + getName());
786 System.out.println("------------------------");
1132 private PrintStream out = new PrintStream(System.out); field in class:HttpsURLConnectionTest.Work
    [all...]
  /external/conscrypt/src/test/java/org/conscrypt/
TrustedCertificateStoreTest.java 760 OutputStream out = new FileOutputStream(file); local
761 out.write(x.getEncoded());
762 out.close();
  /external/jmdns/src/javax/jmdns/impl/
ServiceInfoImpl.java 131 ByteArrayOutputStream out = new ByteArrayOutputStream(text.length()); local
132 writeUTF(out, text);
133 this._text = out.toByteArray();
177 ByteArrayOutputStream out = new ByteArrayOutputStream(text.length()); local
178 writeUTF(out, text);
179 this._text = out.toByteArray();
750 static void writeUTF(OutputStream out, String str) throws IOException {
754 out.write(c);
757 out.write(0xE0 | ((c >> 12) & 0x0F));
758 out.write(0x80 | ((c >> 6) & 0x3F))
1235 ByteArrayOutputStream out = new ByteArrayOutputStream(256); local
    [all...]
  /external/emma/lib/
emma.jar 
  /external/owasp/sanitizer/tools/emma/lib/
emma.jar 
  /art/compiler/
oat_writer.cc 43 DCHECK_EQ(static_cast<off_t>(file_offset + relative_offset), out->Seek(0, kSeekCurrent)) \
47 DCHECK_EQ(static_cast<off_t>(file_offset + offset_), out->Seek(0, kSeekCurrent)) \
488 // so we can simply compare the pointers to find out if things are duplicated.
529 // so we can simply compare the pointers to find out if things are duplicated.
571 WriteCodeMethodVisitor(OatWriter* writer, OutputStream* out, const size_t file_offset,
574 out_(out),
584 OutputStream* out = out_; local
596 if (UNLIKELY(!out->WriteFully(kPadding, aligned_code_delta))) {
617 if (!out->WriteFully(&method_header, sizeof(method_header))) {
624 if (!out->WriteFully(&(*quick_code)[0], code_size))
665 OutputStream* out = out_; local
    [all...]
  /art/compiler/optimizing/
code_generator_arm.cc 457 if (locations != nullptr && locations->Out().Equals(location)) {
510 Move32(location, locations->Out());
514 Move64(location, locations->Out());
627 __ mov(locations->Out().AsArm().AsCoreRegister(), ShifterOperand(1),
629 __ mov(locations->Out().AsArm().AsCoreRegister(), ShifterOperand(0),
895 __ add(locations->Out().AsArm().AsCoreRegister(),
899 __ AddConstant(locations->Out().AsArm().AsCoreRegister(),
906 __ adds(locations->Out().AsArm().AsRegisterPairLow(),
909 __ adc(locations->Out().AsArm().AsRegisterPairHigh(),
1170 Register out = locations->Out().AsArm().AsCoreRegister(); local
1176 Register out = locations->Out().AsArm().AsCoreRegister(); local
1182 Register out = locations->Out().AsArm().AsCoreRegister(); local
1188 Register out = locations->Out().AsArm().AsCoreRegister(); local
1195 Register out = locations->Out().AsArm().AsCoreRegister(); local
1202 ArmManagedRegister out = locations->Out().AsArm(); local
1255 Register out = locations->Out().AsArm().AsCoreRegister(); local
1268 Register out = locations->Out().AsArm().AsCoreRegister(); local
1281 Register out = locations->Out().AsArm().AsCoreRegister(); local
1294 Register out = locations->Out().AsArm().AsCoreRegister(); local
1309 Register out = locations->Out().AsArm().AsCoreRegister(); local
1322 ArmManagedRegister out = locations->Out().AsArm(); local
1449 Register out = locations->Out().AsArm().AsCoreRegister(); local
    [all...]
code_generator_x86.cc 468 Move32(location, instruction->GetLocations()->Out());
472 Move64(location, instruction->GetLocations()->Out());
615 __ setb(X86Condition(comp->GetCondition()), locations->Out().AsX86().AsCpuRegister());
835 locations->Out().AsX86().AsCpuRegister());
852 locations->Out().AsX86().AsRegisterPair());
908 locations->Out().AsX86().AsCpuRegister());
998 Location out = locations->Out(); local
1161 Register out = locations->Out().AsX86().AsCpuRegister(); local
1167 Register out = locations->Out().AsX86().AsCpuRegister(); local
1173 Register out = locations->Out().AsX86().AsCpuRegister(); local
1179 Register out = locations->Out().AsX86().AsCpuRegister(); local
1186 Register out = locations->Out().AsX86().AsCpuRegister(); local
1193 X86ManagedRegister out = locations->Out().AsX86(); local
1250 Register out = locations->Out().AsX86().AsCpuRegister(); local
1262 Register out = locations->Out().AsX86().AsCpuRegister(); local
1274 Register out = locations->Out().AsX86().AsCpuRegister(); local
1286 Register out = locations->Out().AsX86().AsCpuRegister(); local
1299 Register out = locations->Out().AsX86().AsCpuRegister(); local
1311 X86ManagedRegister out = locations->Out().AsX86(); local
1445 Register out = locations->Out().AsX86().AsCpuRegister(); local
    [all...]
code_generator_x86_64.cc 353 Move(location, instruction->GetLocations()->Out());
494 comp->GetLocations()->Out().AsX86_64().AsCpuRegister());
566 __ movl(locations->Out().AsX86_64().AsCpuRegister(), Immediate(0));
570 __ movl(locations->Out().AsX86_64().AsCpuRegister(), Immediate(-1));
574 __ movl(locations->Out().AsX86_64().AsCpuRegister(), Immediate(1));
780 locations->Out().AsX86_64().AsCpuRegister().AsRegister());
846 locations->Out().AsX86_64().AsCpuRegister().AsRegister());
925 locations->Out().AsX86_64().AsCpuRegister().AsRegister());
926 __ xorq(locations->Out().AsX86_64().AsCpuRegister(), Immediate(1));
1009 CpuRegister out = locations->Out().AsX86_64().AsCpuRegister(); local
1095 CpuRegister out = locations->Out().AsX86_64().AsCpuRegister(); local
1107 CpuRegister out = locations->Out().AsX86_64().AsCpuRegister(); local
1119 CpuRegister out = locations->Out().AsX86_64().AsCpuRegister(); local
1131 CpuRegister out = locations->Out().AsX86_64().AsCpuRegister(); local
1145 CpuRegister out = locations->Out().AsX86_64().AsCpuRegister(); local
1157 CpuRegister out = locations->Out().AsX86_64().AsCpuRegister(); local
1277 CpuRegister out = locations->Out().AsX86_64().AsCpuRegister(); local
    [all...]

Completed in 845 milliseconds

<<41424344454647484950>>