HomeSort by relevance Sort by last modified time
    Searched defs:outs (Results 1 - 25 of 41) sorted by null

1 2

  /external/curl/src/
tool_cb_hdr.h 30 * 'outs' member is a pointer to the OutStruct variable used to keep
38 * set 'outs' filename, otherwise FALSE;
42 struct OutStruct *outs; member in struct:HdrCbData
tool_cb_wrt.c 35 bool tool_create_output_file(struct OutStruct *outs)
37 struct GlobalConfig *global = outs->config->global;
40 if(!outs->filename || !*outs->filename) {
45 if(outs->is_cd_filename) {
47 file = fopen(outs->filename, "rb");
50 warnf(global, "Refusing to overwrite %s: %s\n", outs->filename,
57 file = fopen(outs->filename, "wb");
59 warnf(global, "Failed to create the file %s: %s\n", outs->filename,
63 outs->s_isreg = TRUE
78 struct OutStruct *outs = userdata; local
    [all...]
tool_cb_hdr.c 46 struct OutStruct *outs = hdrcbdata->outs; local
93 !curl_easy_getinfo(outs->config->easy, CURLINFO_EFFECTIVE_URL, &url) &&
122 outs->filename = filename;
123 outs->alloc_filename = TRUE;
124 outs->is_cd_filename = TRUE;
125 outs->s_isreg = TRUE;
126 outs->fopened = FALSE;
127 outs->stream = NULL;
tool_operate.c 475 struct OutStruct outs; local
491 memset(&outs, 0, sizeof(struct OutStruct));
492 outs.stream = stdout;
493 outs.config = config;
584 DEBUGASSERT(!outs.filename);
615 outs.fopened = TRUE;
616 outs.stream = file;
617 outs.init = config->resume_from;
620 outs.stream = NULL; /* open when needed */
622 outs.filename = outfile
    [all...]
tool_metalink.c 788 int parse_metalink(struct OperationConfig *config, struct OutStruct *outs,
796 /* metlaink_parse_final deletes outs->metalink_parser */
797 r = metalink_parse_final(outs->metalink_parser, NULL, 0, &metalink);
798 outs->metalink_parser = NULL;
868 struct OutStruct *outs = userdata; local
869 struct OperationConfig *config = outs->config;
883 rv = metalink_parse_update(outs->metalink_parser, buffer, sz *nmemb);
  /frameworks/compile/mclinker/lib/Support/
raw_ostream.cpp 90 // outs(), errs(), nulls()
92 raw_fd_ostream& outs() { function in namespace:mcld
  /frameworks/native/services/surfaceflinger/
GpuService.cpp 101 FILE* outs = fdopen(out, "w"); local
102 if (!outs) {
107 fprintf(outs,
110 fclose(outs);
121 FILE* outs = fdopen(out, "w"); local
122 if (!outs) {
127 vkjsonPrint(outs);
128 fclose(outs);
  /frameworks/rs/cpu_ref/
rsCpuScriptGroup.h 45 Allocation *const* outs; member in struct:android::renderscript::CpuScriptGroupImpl::ScriptList
rsCpuScriptGroup.cpp 92 if (sl->outs[ct]) {
94 (uint8_t *)sl->outs[ct]->mHal.drvState.lod[0].mallocPtr;
96 ostep = sl->outs[ct]->mHal.state.elementSizeBytes;
101 sl->outs[ct]->mHal.drvState.lod[0].stride * kinfo->current.y;
103 } else if (sl->outs[ct]->mHal.drvState.lod[0].dimY > kinfo->lid) {
106 sl->outs[ct]->mHal.drvState.lod[0].stride * kinfo->lid;
127 std::vector<Allocation *> outs; local
197 outs.push_back(aout);
224 bool launchOK = si->forEachMtlsSetup(ains, inLen, outs[ct], nullptr, 0, nullptr, &mtls);
227 si->preLaunch(slot, ains, inLen, outs[ct], mtls.fep.usr
    [all...]
rsCpuIntrinsics_x86.cpp 817 __m128i all1s, outa, outs; local
1079 __m128i all1s, ina, outa, ins, outs; local
1150 __m128i all1s, ina, ins, outa, outs; local
    [all...]
  /external/r8/src/test/java/com/android/tools/r8/dex/
ExtraFileTest.java 55 List<String> outs = local
61 outs.forEach(f -> Assert.assertTrue("Failed to find file " + f, Files.exists(Paths.get(f))));
64 outs, local
  /external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/
LZWEncoder.java 122 void char_out(byte c, OutputStream outs) throws IOException {
125 flush_char(outs);
131 void cl_block(OutputStream outs) throws IOException {
136 output(ClearCode, outs);
145 void compress(int init_bits, OutputStream outs) throws IOException {
178 output(ClearCode, outs);
203 output(ent, outs);
209 cl_block(outs);
212 output(ent, outs);
213 output(EOFCode, outs);
    [all...]
  /external/llvm/test/MC/X86/
x86-32.s 627 outs (%esi), (%dx) label
intel-syntax.s 761 outs dx, word ptr [eax] label
764 // CHECK-STDERR-NEXT: outs dx, word ptr [eax]
x86-64.s 287 outs (%rsi), (%dx) label
    [all...]
  /external/llvm/lib/Support/
raw_ostream.cpp 713 // outs(), errs(), nulls()
716 /// outs() - This returns a reference to a raw_ostream for standard output.
717 /// Use it like: outs() << "foo" << "bar";
718 raw_ostream &llvm::outs() { function in class:llvm
721 // ever call outs(), you can't open another raw_fd_ostream on stdout, as we'll
  /external/swiftshader/third_party/LLVM/lib/Support/
raw_ostream.cpp 640 // outs(), errs(), nulls()
643 /// outs() - This returns a reference to a raw_ostream for standard output.
644 /// Use it like: outs() << "foo" << "bar";
645 raw_ostream &llvm::outs() { function in class:llvm
648 // detection. If you don't want this behavior, don't use outs().
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
raw_ostream.cpp 692 // outs(), errs(), nulls()
695 /// outs() - This returns a reference to a raw_ostream for standard output.
696 /// Use it like: outs() << "foo" << "bar";
697 raw_ostream &llvm::outs() { function in class:llvm
700 // ever call outs(), you can't open another raw_fd_ostream on stdout, as we'll
  /frameworks/ml/nn/common/
CpuExecutor.cpp 255 const hidl_vec<uint32_t>& outs = operation.outputs; local
263 auto allParametersPresent = [&operation, &ins, &outs, this](size_t requiredIns,
283 return verify(requiredIns, ins, "in") && verify(requiredOuts, outs, "out");
299 RunTimeOperandInfo& out = mOperands[outs[0]];
332 RunTimeOperandInfo& out = mOperands[outs[0]];
362 RunTimeOperandInfo& output = mOperands[outs[0]];
378 RunTimeOperandInfo& output = mOperands[outs[0]];
436 RunTimeOperandInfo& output = mOperands[outs[0]];
523 RunTimeOperandInfo& output = mOperands[outs[0]];
603 RunTimeOperandInfo& output = mOperands[outs[0]]
    [all...]
  /external/mesa3d/src/gallium/drivers/ilo/shader/
ilo_shader_vs.c 805 vs_collect_outputs(struct vs_compile_context *vcc, struct toy_src *outs)
898 outs[i] = src;
911 struct toy_src outs[PIPE_MAX_SHADER_OUTPUTS]; local
931 total_attrs = vs_collect_outputs(vcc, outs);
987 tc_MOV(tc, tdst(TOY_FILE_MRF, mrf++, 0), outs[sent_attrs + i]);
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv50_surface.c 947 struct ureg_dst outs; local
965 outs = ureg_writemask(out, TGSI_WRITEMASK_W);
969 outs = ureg_writemask(out, TGSI_WRITEMASK_X);
976 ureg_MUL(ureg, outs, ssrc, ureg_scalar(scale, TGSI_SWIZZLE_X));
    [all...]
  /external/valgrind/helgrind/
hg_main.c 3483 WordSetID outs; \/* in univ_laog *\/ member in struct:__anon37644
    [all...]
  /frameworks/base/services/core/java/com/android/server/pm/
ShortcutService.java 858 FileOutputStream outs = null; local
860 outs = file.startWrite();
864 out.setOutput(outs, StandardCharsets.UTF_8.name());
876 file.finishWrite(outs);
879 file.failWrite(outs);
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
tc-ia64.c 915 unsigned int outs,
921 sof = ins + locs + outs;
938 md.out.num_regs = outs;
4587 int ins, locs, outs, rots; local
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.ecf.provider.filetransfer_3.2.0.v20130604-1622.jar 

Completed in 2384 milliseconds

1 2