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

<<41424344454647484950>>

  /external/libxml2/
nanohttp.c 139 char *out; /* buffer sent (zero terminated) */ member in struct:xmlNanoHTTPCtxt
172 * Handle an out of memory condition
423 if (ctxt->out != NULL) xmlFree(ctxt->out);
977 /* Time out */
978 __xmlIOErr(XML_FROM_HTTP, 0, "Connect attempt timed out");
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
sort.c 461 static const char *out = "N/A"; local
464 out = "N";
466 out = "Y";
468 return repsep_snprintf(bf, size, "%-*s", width, out);
548 const char *out; local
555 out = "N/A";
557 out = "Yes";
559 out = "No";
561 return repsep_snprintf(bf, size, "%-*s", width, out);
597 char out[64] local
674 char out[64]; local
742 char out[64]; local
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 94 formatted_raw_ostream &Out;
109 ModulePass(ID), Out(o), uniqueNum(0), is_inline(false), indent_level(0){}
127 formatted_raw_ostream& nl(formatted_raw_ostream &Out, int delta = 0);
129 inline void out() { if (indent_level >0) indent_level--; } function in class:__anon5559::CppWriter
167 formatted_raw_ostream &CppWriter::nl(formatted_raw_ostream &Out, int delta) {
168 Out << '\n';
171 Out.indent(indent_level);
172 return Out;
222 Out << "ConstantFP::get(mod->getContext(), ";
223 Out << "APFloat("
    [all...]
  /external/llvm/test/MC/X86/
x86-64.s 263 out %al, (%dx) label
265 out %ax, (%dx) label
267 out %eax, (%dx) label
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_llvm.c 23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
462 LLVMValueRef out; local
475 out = LLVMBuildLoad(builder, outputs[attrib][chan], "");
476 out = lp_build_clamp(&bld, out, bld.zero, bld.one);
477 LLVMBuildStore(builder, out, outputs[attrib][chan]);
683 LLVMValueRef out = LLVMBuildLoad(builder, outputs[attrib][chan], ""); local
684 lp_build_name(out, "output%u.%c", attrib, "xyzw"[chan]);
691 lp_build_print_value(gallivm, "val = ", out);
693 soa[chan] = out;
815 LLVMValueRef out = LLVMBuildLoad(builder, outputs[0][i], ""); \/*x0 x1 .. xn*\/ local
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_fs.c 24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
399 * write that out.
422 LLVMValueRef out = LLVMBuildLoad(builder, outputs[attrib][chan], ""); local
423 lp_build_name(out, "color%u.%u.%c", i, attrib, "rgba"[chan]);
424 LLVMBuildStore(builder, out, color[cbuf][chan]);
638 * write that out.
661 LLVMValueRef out = LLVMBuildLoad(builder, outputs[attrib][chan], ""); local
665 lp_build_name(out, "color%u.%c", attrib, "rgba"[chan]);
666 LLVMBuildStore(builder, out, color_ptr);
    [all...]
  /external/mesa3d/src/gallium/drivers/nvc0/codegen/
nv50_ir_emit_nvc0.cpp 18 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
2088 BasicBlock *out = BasicBlock::get(ei.getNode()); local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
renderer.c 23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
266 struct ureg_dst out; local
270 out = ureg_DECL_output(ureg, TGSI_SEMANTIC_POSITION, 0);
273 ureg_MOV(ureg, ureg_writemask(out, TGSI_WRITEMASK_Z), imm);
285 struct ureg_dst out; local
289 out = ureg_DECL_output(ureg, TGSI_SEMANTIC_COLOR, 0);
292 ureg_MOV(ureg, out, imm);
    [all...]
  /external/mesa3d/src/mesa/math/
m_matrix.c 21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
355 GLfloat *out = mat->inv; local
452 MAT(out,0,0) = r0[4]; MAT(out,0,1) = r0[5],
453 MAT(out,0,2) = r0[6]; MAT(out,0,3) = r0[7],
454 MAT(out,1,0) = r1[4]; MAT(out,1,1) = r1[5],
455 MAT(out,1,2) = r1[6]; MAT(out,1,3) = r1[7]
483 GLfloat *out = mat->inv; local
555 GLfloat *out = mat->inv; local
651 GLfloat *out = mat->inv; local
684 GLfloat *out = mat->inv; local
    [all...]
  /external/openssl/apps/
req.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
111 * -out arg - output file - default stdout
113 * -noout - don't print stuff out.
114 * -text - print out human readable text.
172 BIO *in=NULL,*out=NULL; local
272 else if (strcmp(*argv,"-out") == 0)
410 BIO_printf(bio_err," -out arg output file\n");
611 out=BIO_new(BIO_s_file());
612 if ((in == NULL) || (out == NULL)
    [all...]
x509.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
98 " -out arg - output file - default stdout\n",
115 " -purpose - print out certificate purposes\n",
143 " -C - print out C code forms\n",
180 BIO *out=NULL; local
315 else if (strcmp(*argv,"-out") == 0)
676 out=BIO_new(BIO_s_file());
677 if (out == NULL)
684 BIO_set_fp(out,stdout,BIO_NOCLOSE)
    [all...]
  /dalvik/dx/src/com/android/dx/merge/
DexMerger.java 202 System.out.printf("Result compacted from %.1fKiB to %.1fKiB to save %.1fKiB%n",
209 System.out.printf("Merged dex A (%d defs/%.1fKiB) with dex B "
227 private final Dex.Section out; field in class:DexMerger.IdMerger
229 protected IdMerger(Dex.Section out) {
230 this.out = out;
240 getSection(contentsOut).off = out.getPosition();
302 getSection(contentsOut).off = out.getPosition();
854 * need to transform them out-of-order.
    [all...]
  /external/javassist/src/main/javassist/
CtClassType.java 247 DataOutputStream out = new DataOutputStream(barray); local
249 classfile.write(out);
1426 classPool.writeClassfile(getName(), out); local
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
HttpResponseCacheTest.java 562 // Setting a low transfer speed ensures that stream discarding will time out.
1922 OutputStream out = new FileOutputStream(new File(directory, file)); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.util_6.1.23.v201004211559.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/121/1/.cp/lib/
apitooling-ant.jar 
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TestClamp.java 41 public Target.Floaty out; field in class:TestClamp.ArgumentsFloatFloatFloatFloat
50 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local
53 script.forEach_testClampFloatFloatFloatFloat(inValue, out);
54 verifyResultsClampFloatFloatFloatFloat(inValue, inMinValue, inMaxValue, out, false);
59 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local
62 scriptRelaxed.forEach_testClampFloatFloatFloatFloat(inValue, out);
63 verifyResultsClampFloatFloatFloatFloat(inValue, inMinValue, inMaxValue, out, true);
69 private void verifyResultsClampFloatFloatFloatFloat(Allocation inValue, Allocation inMinValue, Allocation inMaxValue, Allocation out, boolean relaxed) {
77 out.copyTo(arrayOut);
85 // Figure out what the outputs should have been
130 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local
139 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local
210 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local
219 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local
290 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local
299 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local
370 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local
379 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local
450 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local
459 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local
530 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local
539 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local
608 public byte out; field in class:TestClamp.ArgumentsCharCharCharChar
617 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 1), INPUTSIZE); local
626 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 1), INPUTSIZE); local
692 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 2), INPUTSIZE); local
701 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 2), INPUTSIZE); local
767 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 3), INPUTSIZE); local
776 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 3), INPUTSIZE); local
842 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 4), INPUTSIZE); local
851 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 4), INPUTSIZE); local
915 public byte out; field in class:TestClamp.ArgumentsUcharUcharUcharUchar
924 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 1), INPUTSIZE); local
933 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 1), INPUTSIZE); local
999 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 2), INPUTSIZE); local
1008 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 2), INPUTSIZE); local
1074 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 3), INPUTSIZE); local
1083 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 3), INPUTSIZE); local
1149 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 4), INPUTSIZE); local
1158 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 4), INPUTSIZE); local
1222 public short out; field in class:TestClamp.ArgumentsShortShortShortShort
1231 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 1), INPUTSIZE); local
1240 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 1), INPUTSIZE); local
1306 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 2), INPUTSIZE); local
1315 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 2), INPUTSIZE); local
1381 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 3), INPUTSIZE); local
1390 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 3), INPUTSIZE); local
1456 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 4), INPUTSIZE); local
1465 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 4), INPUTSIZE); local
1529 public short out; field in class:TestClamp.ArgumentsUshortUshortUshortUshort
1538 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 1), INPUTSIZE); local
1547 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 1), INPUTSIZE); local
1613 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 2), INPUTSIZE); local
1622 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 2), INPUTSIZE); local
1688 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 3), INPUTSIZE); local
1697 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 3), INPUTSIZE); local
1763 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 4), INPUTSIZE); local
1772 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 4), INPUTSIZE); local
1836 public int out; field in class:TestClamp.ArgumentsIntIntIntInt
1845 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 1), INPUTSIZE); local
1854 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 1), INPUTSIZE); local
1920 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 2), INPUTSIZE); local
1929 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 2), INPUTSIZE); local
1995 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 3), INPUTSIZE); local
2004 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 3), INPUTSIZE); local
2070 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 4), INPUTSIZE); local
2079 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 4), INPUTSIZE); local
2143 public int out; field in class:TestClamp.ArgumentsUintUintUintUint
2152 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 1), INPUTSIZE); local
2161 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 1), INPUTSIZE); local
2227 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 2), INPUTSIZE); local
2236 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 2), INPUTSIZE); local
2302 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 3), INPUTSIZE); local
2311 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 3), INPUTSIZE); local
2377 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 4), INPUTSIZE); local
2386 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 4), INPUTSIZE); local
2450 public long out; field in class:TestClamp.ArgumentsLongLongLongLong
2459 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 1), INPUTSIZE); local
2468 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 1), INPUTSIZE); local
2534 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 2), INPUTSIZE); local
2543 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 2), INPUTSIZE); local
2609 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 3), INPUTSIZE); local
2618 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 3), INPUTSIZE); local
2684 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 4), INPUTSIZE); local
2693 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 4), INPUTSIZE); local
2757 public long out; field in class:TestClamp.ArgumentsUlongUlongUlongUlong
2766 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 1), INPUTSIZE); local
2775 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 1), INPUTSIZE); local
2841 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 2), INPUTSIZE); local
2850 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 2), INPUTSIZE); local
2916 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 3), INPUTSIZE); local
2925 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 3), INPUTSIZE); local
2991 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 4), INPUTSIZE); local
3000 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 4), INPUTSIZE); local
3066 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 2), INPUTSIZE); local
3075 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 2), INPUTSIZE); local
3141 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 3), INPUTSIZE); local
3150 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 3), INPUTSIZE); local
3216 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 4), INPUTSIZE); local
3225 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 4), INPUTSIZE); local
3291 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 2), INPUTSIZE); local
3300 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 2), INPUTSIZE); local
3366 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 3), INPUTSIZE); local
3375 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 3), INPUTSIZE); local
3441 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 4), INPUTSIZE); local
3450 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 4), INPUTSIZE); local
3516 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 2), INPUTSIZE); local
3525 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 2), INPUTSIZE); local
3591 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 3), INPUTSIZE); local
3600 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 3), INPUTSIZE); local
3666 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 4), INPUTSIZE); local
3675 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 4), INPUTSIZE); local
3741 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 2), INPUTSIZE); local
3750 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 2), INPUTSIZE); local
3816 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 3), INPUTSIZE); local
3825 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 3), INPUTSIZE); local
3891 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 4), INPUTSIZE); local
3900 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 4), INPUTSIZE); local
3966 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 2), INPUTSIZE); local
3975 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 2), INPUTSIZE); local
4041 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 3), INPUTSIZE); local
4050 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 3), INPUTSIZE); local
4116 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 4), INPUTSIZE); local
4125 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 4), INPUTSIZE); local
4191 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 2), INPUTSIZE); local
4200 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 2), INPUTSIZE); local
4266 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 3), INPUTSIZE); local
4275 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 3), INPUTSIZE); local
4341 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 4), INPUTSIZE); local
4350 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 4), INPUTSIZE); local
4416 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 2), INPUTSIZE); local
4425 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 2), INPUTSIZE); local
4491 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 3), INPUTSIZE); local
4500 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 3), INPUTSIZE); local
4566 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 4), INPUTSIZE); local
4575 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_64, 4), INPUTSIZE); local
4641 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 2), INPUTSIZE); local
4650 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 2), INPUTSIZE); local
4716 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 3), INPUTSIZE); local
4725 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 3), INPUTSIZE); local
4791 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 4), INPUTSIZE); local
4800 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_64, 4), INPUTSIZE); local
    [all...]
TestClz.java 39 public byte out; field in class:TestClz.ArgumentsCharChar
45 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 1), INPUTSIZE); local
46 script.forEach_testClzCharChar(inValue, out);
47 verifyResultsClzCharChar(inValue, out, false);
52 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 1), INPUTSIZE); local
53 scriptRelaxed.forEach_testClzCharChar(inValue, out);
54 verifyResultsClzCharChar(inValue, out, true);
60 private void verifyResultsClzCharChar(Allocation inValue, Allocation out, boolean relaxed) {
64 out.copyTo(arrayOut);
70 // Figure out what the outputs should have been
101 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 2), INPUTSIZE); local
108 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 2), INPUTSIZE); local
157 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 3), INPUTSIZE); local
164 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 3), INPUTSIZE); local
213 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 4), INPUTSIZE); local
220 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 4), INPUTSIZE); local
268 public byte out; field in class:TestClz.ArgumentsUcharUchar
274 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 1), INPUTSIZE); local
281 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 1), INPUTSIZE); local
330 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 2), INPUTSIZE); local
337 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 2), INPUTSIZE); local
386 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 3), INPUTSIZE); local
393 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 3), INPUTSIZE); local
442 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 4), INPUTSIZE); local
449 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 4), INPUTSIZE); local
497 public short out; field in class:TestClz.ArgumentsShortShort
503 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 1), INPUTSIZE); local
510 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 1), INPUTSIZE); local
559 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 2), INPUTSIZE); local
566 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 2), INPUTSIZE); local
615 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 3), INPUTSIZE); local
622 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 3), INPUTSIZE); local
671 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 4), INPUTSIZE); local
678 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 4), INPUTSIZE); local
726 public short out; field in class:TestClz.ArgumentsUshortUshort
732 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 1), INPUTSIZE); local
739 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 1), INPUTSIZE); local
788 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 2), INPUTSIZE); local
795 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 2), INPUTSIZE); local
844 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 3), INPUTSIZE); local
851 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 3), INPUTSIZE); local
900 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 4), INPUTSIZE); local
907 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 4), INPUTSIZE); local
955 public int out; field in class:TestClz.ArgumentsIntInt
961 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 1), INPUTSIZE); local
968 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 1), INPUTSIZE); local
1017 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 2), INPUTSIZE); local
1024 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 2), INPUTSIZE); local
1073 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 3), INPUTSIZE); local
1080 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 3), INPUTSIZE); local
1129 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 4), INPUTSIZE); local
1136 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 4), INPUTSIZE); local
1184 public int out; field in class:TestClz.ArgumentsUintUint
1190 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 1), INPUTSIZE); local
1197 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 1), INPUTSIZE); local
1246 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 2), INPUTSIZE); local
1253 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 2), INPUTSIZE); local
1302 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 3), INPUTSIZE); local
1309 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 3), INPUTSIZE); local
1358 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 4), INPUTSIZE); local
1365 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 4), INPUTSIZE); local
    [all...]
  /external/glide/third_party/disklrucache/
disklrucache-2.0.2.jar 
  /art/oatdump/
oatdump.cc 1709 std::unique_ptr<std::ofstream> out; local
    [all...]
  /cts/tests/tests/security/src/android/security/cts/
OpenSSLHeartbleedTest.java 382 OutputStream out,
399 out,
419 OutputStream out,
448 out.write(recordBytes);
449 out.flush();
468 out.write(heartbeatRequestRecordBytes);
469 out.flush();
    [all...]
  /dalvik/dx/src/com/android/dx/command/dexer/
Main.java 316 OutputStream out = openOutput(args.outName); local
317 out.write(outArray);
318 closeOutput(out);
364 OutputStream out = new FileOutputStream(new File(outDir, getDexFileName(i))); local
366 out.write(dexOutputArrays.get(i));
368 closeOutput(out);
524 throw new RuntimeException("Timed out waiting for threads.");
568 CodeStatistics.dumpStatistics(DxConsole.out);
623 DxConsole.out.println("processing archive " + file +
652 DxConsole.out.println("ignored resource " + name)
853 OutputStream out = openOutput(fileName); local
    [all...]
  /development/samples/training/InteractiveChart/src/com/example/android/interactivechart/
InteractiveLineGraphView.java 422 * The string begins at out.length - [return value].
424 private static int formatFloat(final char[] out, float val, int digits) {
427 out[out.length - 1] = '0';
439 int index = out.length - 1;
444 out[index--] = (char) (digit + '0');
447 out[index--] = '.';
452 out[index--] = '-';
    [all...]
  /device/samsung/manta/audio/
audio_hw.c 426 static void do_out_standby(struct stream_out *out);
432 * out stream(s) in enum output_type order
434 * TODO investigate whether we ever actually take both in stream and out stream
474 static int read_hdmi_channel_masks(struct audio_device *adev, struct stream_out *out) {
494 out->supported_channel_masks[0] = AUDIO_CHANNEL_OUT_5POINT1;
496 out->supported_channel_masks[1] = AUDIO_CHANNEL_OUT_7POINT1;
628 /* must be called with hw device outputs list, all out streams, and hw device mutexes locked */
632 struct stream_out *out; local
635 out = adev->outputs[type];
636 if (type == OUTPUT_HDMI || !out)
933 struct stream_out *out = (struct stream_out *)stream; local
945 struct stream_out *out = (struct stream_out *)stream; local
953 struct stream_out *out = (struct stream_out *)stream; local
1031 struct stream_out *out = adev->outputs[type]; local
1045 struct stream_out *out = adev->outputs[--type]; local
1054 struct stream_out *out = (struct stream_out *)stream; local
1073 struct stream_out *out = (struct stream_out *)stream; local
1119 struct stream_out *out = (struct stream_out *)stream; local
1159 struct stream_out *out = (struct stream_out *)stream; local
1168 struct stream_out *out = (struct stream_out *)stream; local
1189 struct stream_out *out = (struct stream_out *)stream; local
1272 struct stream_out *out = (struct stream_out *)stream; local
1585 struct stream_out *out; local
    [all...]
  /external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/
antlr3.jar 

Completed in 496 milliseconds

<<41424344454647484950>>