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