Searched
defs:out (Results
1201 -
1225 of
1601) sorted by null
<<41424344454647484950>>
/external/chromium_org/third_party/sqlite/src/src/ |
shell.c | 404 FILE *out; /* Write results here */ member in struct:callback_data 417 char outfile[FILENAME_MAX]; /* Filename for *out */ 477 static void output_hex_blob(FILE *out, const void *pBlob, int nBlob){ 480 fprintf(out,"X'"); 481 for(i=0; i<nBlob; i++){ fprintf(out,"%02x",zBlob[i]); } 482 fprintf(out,"'"); 488 static void output_quoted_string(FILE *out, const char *z){ 495 fprintf(out,"'%s'",z); 497 fprintf(out,"'"); 501 fprintf(out,"''"); 607 FILE *out = p->out; local [all...] |
vdbeaux.c | 15 ** But that file was getting too big so this subroutines were split out. 106 ** If an out-of-memory error occurs while resizing the array, return 2333 FILE *out = fopen("vdbe_profile.out", "a"); local [all...] |
/external/chromium_org/v8/tools/gcmole/ |
gcmole.cc | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 57 llvm::raw_svector_ostream out(output); 58 ctx->mangleName(decl, out); 59 *result = out.str().str(); 335 Environment out = effect.hasGC() ? Environment() : Environment(*this); local 336 if (effect.env() != NULL) out.live_ |= effect.env()->live_; 337 return out; 441 ExprEffect out = ExprEffect::NoneWithEnv(env_); local 442 if (gc_.any()) out.setGC(); 443 if (raw_use_.any()) out.setRawUse() 471 Environment* out = NULL; local 483 Environment* out = (b_env == NULL) ? a_env : b_env; local 774 ExprEffect out = ExprEffect::None(); local 839 ExprEffect out = local 944 const Environment& out() { function in class:__anon22037::FunctionAnalyzer::Block 996 Environment out = env; local 1105 Environment out = var->hasInit() ? VisitStmt(var->getInit(), env) : env; local 1118 Environment out = env; local [all...] |
/external/deqp/modules/gles3/functional/ |
es3fShaderApiTests.cpp | 88 "layout(location = 0) out mediump vec4 o_fragColor;\n" 120 void sliceSourceString (const std::string& in, ShaderSources& out, const int numSlices, const size_t paddingLength = 0) 130 out.strings.push_back(in.substr(ndx * sliceSize, sliceSize) + padding); 133 out.lengths.push_back((int)sliceSize); 141 out.strings.push_back(lastString + padding); 144 out.lengths.push_back(lastStringLength); 247 std::ostringstream out; local 249 out << "#version 300 es\n"; 252 out << "layout(location = 0) out mediump vec4 o_fragColor;\n" 597 std::ostringstream out; local 704 std::ostringstream out; local [all...] |
/external/deqp/modules/glshared/ |
glsShaderExecUtil.cpp | 82 const char* out = usesInout ? "out" : "varying"; local 103 src << "flat " << out << " " << glu::declare(intType, "o_" + output->name) << ";\n"; 106 src << "flat " << out << " " << glu::declare(output->varType, output->name) << ";\n"; 163 << "layout(points, max_vertices = 1) out;\n"; 178 src << "flat out " << glu::declare(intType, "o_" + output->name) << ";\n"; 181 src << "flat out " << glu::declare(output->varType, output->name) << ";\n"; 260 << "flat out " << glu::declare(input->varType, outputPrefix + input->name) << ";\n"; [all...] |
/external/e2fsprogs/debugfs/ |
debugfs.c | 340 FILE *out; local 359 out = open_pager(); 365 list_super2(current_fs->super, out); 368 fprintf(out, "Directories: %d\n", numdirs); 371 close_pager(out); 378 fprintf(out, " Group %2d: block bitmap at %llu, " 397 fprintf(out, "%u unused %s\n", 403 &first, out); 405 &first, out); 407 fprintf(out, "%sChecksum 0x%04x" 851 FILE *out; local 893 FILE *out; local [all...] |