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...]