Searched refs:cl (Results 1 - 25 of 593) sorted by relevance

1234567891011>>

/external/quake/quake/src/QW/server/
H A Dsv_nchan.c25 void ClientReliableCheckBlock(client_t *cl, int maxsize) argument
27 if (cl->num_backbuf ||
28 cl->netchan.message.cursize >
29 cl->netchan.message.maxsize - maxsize - 1) {
31 if (!cl->num_backbuf) {
32 memset(&cl->backbuf, 0, sizeof(cl->backbuf));
33 cl->backbuf.allowoverflow = true;
34 cl->backbuf.data = cl
58 ClientReliableWrite_Begin(client_t *cl, int c, int maxsize) argument
64 ClientReliable_FinishWrite(client_t *cl) argument
76 ClientReliableWrite_Angle(client_t *cl, float f) argument
85 ClientReliableWrite_Angle16(client_t *cl, float f) argument
94 ClientReliableWrite_Byte(client_t *cl, int c) argument
103 ClientReliableWrite_Char(client_t *cl, int c) argument
112 ClientReliableWrite_Float(client_t *cl, float f) argument
121 ClientReliableWrite_Coord(client_t *cl, float f) argument
130 ClientReliableWrite_Long(client_t *cl, int c) argument
139 ClientReliableWrite_Short(client_t *cl, int c) argument
148 ClientReliableWrite_String(client_t *cl, char *s) argument
157 ClientReliableWrite_SZ(client_t *cl, void *data, int len) argument
[all...]
/external/llvm/lib/Target/
H A DTargetMachine.cpp53 static cl::opt<bool, true>
55 cl::desc("Print generated machine code"),
56 cl::location(PrintMachineCode), cl::init(false));
57 static cl::opt<bool, true>
59 cl::desc("Disable frame pointer elimination optimization"),
60 cl::location(NoFramePointerElim),
61 cl::init(false));
62 static cl::opt<bool, true>
64 cl
[all...]
/external/llvm/utils/fpcmp/
H A Dfpcmp.cpp21 cl::opt<std::string>
22 File1(cl::Positional, cl::desc("<input file #1>"), cl::Required);
23 cl::opt<std::string>
24 File2(cl::Positional, cl::desc("<input file #2>"), cl::Required);
26 cl::opt<double>
27 RelTolerance("r", cl
[all...]
/external/llvm/include/llvm/Support/
H A DPluginLoader.h31 static cl::opt<PluginLoader, false, cl::parser<std::string> >
32 LoadOpt("load", cl::ZeroOrMore, cl::value_desc("pluginfilename"),
33 cl::desc("Load the specified plugin"));
/external/llvm/tools/llvm-ld/
H A DOptimize.cpp30 static cl::list<const PassInfo*, bool, PassNameParser>
31 OptimizationList(cl::desc("Optimizations available:"));
34 static cl::opt<bool> DontVerify("disable-verify", cl::ReallyHidden);
36 static cl::opt<bool> DisableInline("disable-inlining",
37 cl::desc("Do not run the inliner pass"));
39 static cl::opt<bool>
41 cl::desc("Do not run any optimization passes"));
43 static cl::opt<bool> DisableInternalize("disable-internalize",
44 cl
[all...]
/external/javassist/src/main/javassist/
H A DLoaderClassPath.java47 public LoaderClassPath(ClassLoader cl) { argument
48 clref = new WeakReference(cl);
52 Object cl = null;
54 cl = clref.get();
56 return cl == null ? "<null>" : cl.toString();
66 ClassLoader cl = (ClassLoader)clref.get();
67 if (cl == null)
70 return cl.getResourceAsStream(cname);
82 ClassLoader cl
[all...]
/external/llvm/lib/Support/
H A DDebug.cpp39 static cl::opt<bool, true>
40 Debug("debug", cl::desc("Enable debug output"), cl::Hidden,
41 cl::location(DebugFlag));
45 static cl::opt<unsigned>
47 cl::desc("Buffer the last N characters of debug output"
50 cl::Hidden,
51 cl::init(0));
68 static cl::opt<DebugOnlyOpt, true, cl
[all...]
/external/llvm/tools/llvm-as/
H A Dllvm-as.cpp33 static cl::opt<std::string>
34 InputFilename(cl::Positional, cl::desc("<input .llvm file>"), cl::init("-"));
36 static cl::opt<std::string>
37 OutputFilename("o", cl::desc("Override output filename"),
38 cl::value_desc("filename"));
40 static cl::opt<bool>
41 Force("f", cl::desc("Enable binary output on terminals"));
43 static cl
[all...]
/external/chromium/base/
H A Dcommand_line_unittest.cc25 CommandLine cl = CommandLine::FromString( local
33 EXPECT_FALSE(cl.command_line_string().empty());
42 CommandLine cl(arraysize(argv), argv);
44 EXPECT_FALSE(cl.HasSwitch("cruller"));
45 EXPECT_FALSE(cl.HasSwitch("flim"));
46 EXPECT_FALSE(cl.HasSwitch("program"));
47 EXPECT_FALSE(cl.HasSwitch("dog"));
48 EXPECT_FALSE(cl.HasSwitch("cat"));
49 EXPECT_FALSE(cl.HasSwitch("output-rotation"));
50 EXPECT_FALSE(cl
107 CommandLine cl = CommandLine::FromString(L""); local
[all...]
/external/llvm/tools/lli/
H A Dlli.cpp49 cl::opt<std::string>
50 InputFile(cl::desc("<input bitcode>"), cl::Positional, cl::init("-"));
52 cl::list<std::string>
53 InputArgv(cl::ConsumeAfter, cl::desc("<program arguments>..."));
55 cl::opt<bool> ForceInterpreter("force-interpreter",
56 cl::desc("Force interpretation: disable JIT"),
57 cl
[all...]
/external/llvm/tools/bugpoint/
H A Dbugpoint.cpp37 static cl::opt<bool>
38 FindBugs("find-bugs", cl::desc("Run many different optimization sequences "
39 "on program to find bugs"), cl::init(false));
41 static cl::list<std::string>
42 InputFilenames(cl::Positional, cl::OneOrMore,
43 cl::desc("<input llvm ll/bc files>"));
45 static cl::opt<unsigned>
46 TimeoutValue("timeout", cl::init(300), cl
[all...]
/external/llvm/lib/TableGen/
H A DMain.cpp32 cl::opt<std::string>
33 OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"),
34 cl::init("-"));
36 cl::opt<std::string>
37 DependFilename("d", cl::desc("Dependency filename"), cl::value_desc("filename"),
38 cl::init(""));
40 cl::opt<std::string>
41 InputFilename(cl
[all...]
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCAsmInfo.cpp19 cl::opt<bool>
20 EnableARMEHABI("arm-enable-ehabi", cl::Hidden,
21 cl::desc("Generate ARM EHABI tables"),
22 cl::init(false));
/external/javassist/sample/duplicate/
H A DMain.java38 javassist.tools.reflect.Loader cl = new javassist.tools.reflect.Loader();
39 cl.makeReflective("sample.duplicate.Ball",
42 cl.run("sample.duplicate.Viewer", args);
/external/javassist/sample/reflect/
H A DMain.java25 Loader cl = (Loader)Main.class.getClassLoader();
26 cl.makeReflective("sample.reflect.Person",
30 cl.run("sample.reflect.Person", args);
/external/llvm/utils/FileUpdate/
H A DFileUpdate.cpp25 static cl::opt<bool>
26 Quiet("quiet", cl::desc("Don't print unnecessary status information"),
27 cl::init(false));
29 static cl::opt<std::string>
30 InputFilename("input-file", cl::desc("Input file (defaults to stdin)"),
31 cl::init("-"), cl::value_desc("filename"));
33 static cl::opt<std::string>
34 OutputFilename(cl::Positional, cl
[all...]
/external/llvm/tools/llc/
H A Dllc.cpp46 static cl::opt<std::string>
47 InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
49 static cl::opt<std::string>
50 OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"));
53 static cl::opt<char>
55 cl::desc("Optimization level. [-O0, -O1, -O2, or -O3] "
57 cl
[all...]
/external/llvm/tools/llvm-link/
H A Dllvm-link.cpp31 static cl::list<std::string>
32 InputFilenames(cl::Positional, cl::OneOrMore,
33 cl::desc("<input bitcode files>"));
35 static cl::opt<std::string>
36 OutputFilename("o", cl::desc("Override output filename"), cl::init("-"),
37 cl::value_desc("filename"));
39 static cl::opt<bool>
40 Force("f", cl
[all...]
/external/quake/quake/src/QW/client/
H A Dview.c117 if (cl.spectator)
134 bob = sqrt(cl.simvel[0]*cl.simvel[0] + cl.simvel[1]*cl.simvel[1]) * cl_bob.value;
155 if (cl.laststop == cl.time)
160 if (cl.nodrift || !cl.pitchvel)
162 cl
[all...]
H A Dcl_pred.c42 if (PM_HullPointContents (&cl.model_precache[1]->hulls[1], 0, pmove.origin) == CONTENTS_EMPTY)
52 if (PM_HullPointContents (&cl.model_precache[1]->hulls[1], 0, pmove.origin) == CONTENTS_EMPTY)
87 pmove.dead = cl.stats[STAT_HEALTH] <= 0;
122 if (cl.paused)
125 cl.time = realtime - cls.latency - cl_pushlatency.value*0.001;
126 if (cl.time > realtime)
127 cl.time = realtime;
129 if (cl.intermission)
132 if (!cl.validsequence)
138 VectorCopy (cl
[all...]
/external/llvm/lib/CodeGen/
H A DLLVMTargetMachine.cpp48 static cl::opt<bool> DisablePostRA("disable-post-ra", cl::Hidden,
49 cl::desc("Disable Post Regalloc"));
50 static cl::opt<bool> DisableBranchFold("disable-branch-fold", cl::Hidden,
51 cl::desc("Disable branch folding"));
52 static cl::opt<bool> DisableTailDuplicate("disable-tail-duplicate", cl::Hidden,
53 cl::desc("Disable tail duplication"));
54 static cl
[all...]
/external/llvm/tools/llvm-cov/
H A Dllvm-cov.cpp24 static cl::opt<bool>
25 DumpGCOV("dump", cl::init(false), cl::desc("dump gcov file"));
27 static cl::opt<std::string>
28 InputGCNO("gcno", cl::desc("<input gcno file>"), cl::init(""));
30 static cl::opt<std::string>
31 InputGCDA("gcda", cl::desc("<input gcda file>"), cl::init(""));
41 cl
[all...]
/external/quake/quake/src/WinQuake/
H A Dcl_parse.cpp81 if (num >= cl.num_entities)
85 while (cl.num_entities<=num)
87 cl_entities[cl.num_entities].colormap = vid.colormap;
88 cl.num_entities++;
135 S_StartSound (ent, channel, cl.sound_precache[sound_num], pos, volume/255.0, attenuation);
227 cl.maxclients = MSG_ReadByte ();
228 if (cl.maxclients < 1 || cl.maxclients > MAX_SCOREBOARD)
230 Con_Printf("Bad maxclients (%u) from server\n", cl.maxclients);
233 cl
[all...]
H A Dview.cpp93 // if (cl.inwater)
117 cycle = cl.time - (int)(cl.time/cl_bobcycle.value)*cl_bobcycle.value;
127 bob = sqrt(cl.velocity[0]*cl.velocity[0] + cl.velocity[1]*cl.velocity[1]) * cl_bob.value;
128 //Con_Printf ("speed: %5.1f\n", Length(cl.velocity));
149 if (cl.laststop == cl
[all...]
/external/javassist/sample/evolve/
H A DDemoLoader.java32 Loader cl = new Loader();
33 cl.addTranslator(cp, translator);
36 cl.run("sample.evolve.DemoServer", args);

Completed in 391 milliseconds

1234567891011>>