HomeSort by relevance Sort by last modified time
    Searched refs:cl (Results 1 - 25 of 724) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/quake/quake/src/QW/server/
sv_nchan.c 25 void ClientReliableCheckBlock(client_t *cl, int maxsize)
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->backbuf_data[0]
    [all...]
  /external/llvm/lib/Target/
TargetMachine.cpp 53 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::desc("Disable frame pointer elimination optimization for non-leaf funcs")
    [all...]
  /bionic/libc/arch-x86/string/
strcmp.S 23 L2: movb (%eax),%cl
24 testb %cl,%cl /* null terminator??? */
26 cmpb %cl,(%edx) /* chars match??? */
30 movb (%eax),%cl
31 testb %cl,%cl
33 cmpb %cl,(%edx)
37 movb (%eax),%cl
38 testb %cl,%c
    [all...]
  /external/llvm/utils/fpcmp/
fpcmp.cpp 21 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::desc("Relative error tolerated"), cl::init(0))
    [all...]
  /external/llvm/include/llvm/Support/
PluginLoader.h 31 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/
Optimize.cpp 30 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::desc("Do not mark all symbols as internal"))
    [all...]
  /external/javassist/src/main/javassist/
LoaderClassPath.java 47 public LoaderClassPath(ClassLoader cl) {
48 clref = new WeakReference(cl);
52 Object cl = null; local
54 cl = clref.get();
56 return cl == null ? "<null>" : cl.toString();
66 ClassLoader cl = (ClassLoader)clref.get(); local
67 if (cl == null)
70 return cl.getResourceAsStream(cname);
82 ClassLoader cl = (ClassLoader)clref.get() local
    [all...]
  /external/llvm/lib/Support/
Debug.cpp 39 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::parser<std::string>
    [all...]
  /external/llvm/tools/llvm-as/
llvm-as.cpp 33 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::opt<bool
    [all...]
  /external/chromium/base/
command_line_unittest.cc 25 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.HasSwitch("not-a-switch"))
107 CommandLine cl = CommandLine::FromString(L""); local
    [all...]
  /external/llvm/tools/lli/
lli.cpp 49 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::init(false))
    [all...]
  /external/llvm/tools/bugpoint/
bugpoint.cpp 37 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::value_desc("seconds")
    [all...]
  /external/llvm/lib/TableGen/
Main.cpp 32 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::Positional, cl::desc("<input file>"), cl::init("-"))
    [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCAsmInfo.cpp 19 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/
Main.java 38 javassist.tools.reflect.Loader cl = new javassist.tools.reflect.Loader(); local
39 cl.makeReflective("sample.duplicate.Ball",
42 cl.run("sample.duplicate.Viewer", args);
  /external/javassist/sample/reflect/
Main.java 25 Loader cl = (Loader)Main.class.getClassLoader(); local
26 cl.makeReflective("sample.reflect.Person",
30 cl.run("sample.reflect.Person", args);
  /external/llvm/utils/FileUpdate/
FileUpdate.cpp 25 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::desc("<output-file>"), cl::Required)
    [all...]
  /external/llvm/tools/llc/
llc.cpp 46 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::Prefix
    [all...]
  /external/llvm/tools/llvm-link/
llvm-link.cpp 31 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::desc("Enable binary output on terminals"))
    [all...]
  /external/quake/quake/src/QW/client/
view.c 117 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.pitchvel = v_centerspeed.value
    [all...]
cl_pred.c 42 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.viewangles, cl.simangles)
    [all...]
  /external/llvm/lib/CodeGen/
LLVMTargetMachine.cpp 48 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::opt<bool> DisableEarlyTailDup("disable-early-taildup", cl::Hidden
    [all...]
  /external/llvm/tools/llvm-cov/
llvm-cov.cpp 24 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::ParseCommandLineOptions(argc, argv, "llvm cov\n")
    [all...]
  /external/quake/quake/src/WinQuake/
cl_parse.cpp 81 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.scores = (scoreboard_t*) Hunk_AllocName (cl.maxclients*sizeof(*cl.scores), "scores")
    [all...]
view.cpp 93 // 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.time
    [all...]

Completed in 326 milliseconds

1 2 3 4 5 6 7 8 91011>>