Searched defs:cl (Results 151 - 175 of 209) sorted by relevance

123456789

/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dformat_pack.c62 linear_to_srgb(GLfloat cl) argument
64 if (cl < 0.0f)
66 else if (cl < 0.0031308f)
67 return 12.92f * cl;
68 else if (cl < 1.0f)
69 return 1.055f * powf(cl, 0.41666f) - 0.055f;
76 linear_float_to_srgb_ubyte(GLfloat cl) argument
78 GLubyte res = FLOAT_TO_UBYTE(linear_to_srgb(cl));
84 linear_ubyte_to_srgb_ubyte(GLubyte cl) argument
86 GLubyte res = FLOAT_TO_UBYTE(linear_to_srgb(cl / 255.
[all...]
/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dlapi.c561 Closure *cl; local
565 cl = luaF_newCclosure(L, n);
566 cl->c.f = fn;
569 setobj2n(L, &cl->c.upvalue[n], L->top + n);
570 setclCvalue(L, L->top, cl);
H A Dlparser.c1622 Closure *cl = luaF_newLclosure(L, 1); /* create main closure */ local
1624 setclLvalue(L, L->top, cl);
1626 funcstate.f = cl->l.p = luaF_newproto(L);
1636 return cl; /* it's on the stack too */
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dtcmalloc.cc175 static void ValidateAllocatedRegion(void* ptr, size_t cl);
332 for (int cl = 0; cl < kNumClasses; ++cl) {
333 const int length = Static::central_cache()[cl].length();
334 const int tc_length = Static::central_cache()[cl].tc_length();
335 const size_t cache_overhead = Static::central_cache()[cl].OverheadBytes();
337 Static::sizemap()->ByteSizeForClass(cl));
340 if (class_count) class_count[cl] = length + tc_length;
451 for (int cl
780 const size_t cl = Static::sizemap()->SizeClass(size); local
804 size_t cl = Static::pageheap()->GetSizeClassIfCached(p); local
1099 size_t cl = Static::sizemap()->SizeClass(size); local
1157 size_t cl = Static::pageheap()->GetSizeClassIfCached(p); local
1222 size_t cl = Static::pageheap()->GetSizeClassIfCached(p); local
1328 int cl = Static::sizemap()->SizeClass(size); local
1779 ValidateAllocatedRegion(void* ptr, size_t cl) argument
1872 ValidateAllocatedRegion(void* ptr, size_t cl) argument
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dtcmalloc.cc320 for (int cl = 0; cl < kNumClasses; ++cl) {
321 const int length = Static::central_cache()[cl].length();
322 const int tc_length = Static::central_cache()[cl].tc_length();
323 const size_t cache_overhead = Static::central_cache()[cl].OverheadBytes();
325 Static::sizemap()->ByteSizeForClass(cl));
328 if (class_count) class_count[cl] = length + tc_length;
420 for (int cl = 0; cl < kNumClasse
770 const size_t cl = Static::sizemap()->SizeClass(size); local
794 size_t cl = Static::pageheap()->GetSizeClassIfCached(p); local
1081 size_t cl = Static::sizemap()->SizeClass(size); local
1130 size_t cl = Static::pageheap()->GetSizeClassIfCached(p); local
1184 size_t cl = Static::pageheap()->GetSizeClassIfCached(p); local
1283 int cl = Static::sizemap()->SizeClass(size); local
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DMemRegion.h818 CompoundLiteralRegion(const CompoundLiteralExpr *cl, const MemRegion* sReg) argument
819 : TypedValueRegion(sReg, CompoundLiteralRegionKind), CL(cl) {}
/external/gcc-demangle/
H A Dcp-demangle.c1536 { "cl", NL ("()"), 2 },
2499 struct demangle_component *cl; local
2506 cl = cplus_demangle_type (di);
2537 return d_make_comp (di, DEMANGLE_COMPONENT_PTRMEM_TYPE, cl, mem);
2661 /* Subroutine of <expression> ::= cl <expression>+ E */
2699 ::= cl <expression>+ E
2821 if (!strcmp (code, "cl"))
4144 if (strcmp (d_left (dc)->u.s_operator.op->code, "cl") != 0)
/external/icu/icu4c/source/test/cintltst/
H A Dcucdtst.c820 int32_t cl, i; local
824 for(cl=0; cl<12; ++cl) {
827 if(posixClasses[cl].fn(posixData[i].c)!=expect) {
829 posixClasses[cl].name, posixData[i].c, expect ? "FALSE" : "TRUE");
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/browsers/
H A Dhists.c66 static char callchain_list__folded(const struct callchain_list *cl) argument
68 return map_symbol__folded(&cl->ms);
397 static char *callchain_list__sym_name(struct callchain_list *cl, argument
402 if (cl->ms.sym)
403 printed = scnprintf(bf, bfsize, "%s", cl->ms.sym->name);
405 printed = scnprintf(bf, bfsize, "%#" PRIx64, cl->ip);
409 cl->ms.map ? cl->ms.map->dso->short_name : "unknown");
/external/llvm/include/llvm/Support/
H A DCommandLine.h35 /// cl Namespace - This namespace contains all of the command line option
38 namespace cl { namespace in namespace:llvm
135 CommaSeparated = 0x01, // Should this cl::list split between commas?
136 PositionalEatsArgs = 0x02, // Should this positional cl::list eat -args?
137 Sink = 0x04 // Should this cl::list eat all unknown options?
441 struct OptionValue<cl::boolOrDefault> : OptionValueCopy<cl::boolOrDefault> {
442 typedef cl::boolOrDefault WrapperType;
446 OptionValue(const cl::boolOrDefault& V) {
449 OptionValue<cl
[all...]
/external/llvm/lib/CodeGen/
H A DRegisterCoalescer.cpp55 static cl::opt<bool>
57 cl::desc("Coalesce copies (default=true)"),
58 cl::init(true));
61 static cl::opt<bool>
63 cl::desc("Coalesce copies on split edges (default=subtarget)"), cl::Hidden);
66 static cl::opt<cl::boolOrDefault>
68 cl::desc("Coalesce copies that span blocks (default=subtarget)"),
69 cl
2072 unsigned cl = LHS->MBB->pred_size() + LHS->MBB->succ_size(); local
[all...]
/external/llvm/lib/Support/
H A DCommandLine.cpp39 using namespace cl;
46 namespace llvm { namespace cl { namespace in namespace:llvm
62 } } // end namespace llvm::cl
99 void cl::MarkOptionsChanged() {
127 OptionCategory llvm::cl::GeneralCategory("General options");
171 if (O->getFormattingFlag() == cl::Positional)
173 else if (O->getMiscFlags() & cl::Sink) // Remember sink options
175 else if (O->getNumOccurrencesFlag() == cl::ConsumeAfter) {
177 O->error("Cannot specify more than one option with cl::ConsumeAfter!");
252 bool PermitValue = O->getValueExpectedFlag() != cl
[all...]
/external/mesa3d/src/mesa/main/
H A Dformat_pack.c62 linear_to_srgb(GLfloat cl) argument
64 if (cl < 0.0f)
66 else if (cl < 0.0031308f)
67 return 12.92f * cl;
68 else if (cl < 1.0f)
69 return 1.055f * powf(cl, 0.41666f) - 0.055f;
76 linear_float_to_srgb_ubyte(GLfloat cl) argument
78 GLubyte res = FLOAT_TO_UBYTE(linear_to_srgb(cl));
84 linear_ubyte_to_srgb_ubyte(GLubyte cl) argument
86 GLubyte res = FLOAT_TO_UBYTE(linear_to_srgb(cl / 255.
[all...]
/external/qemu-pc-bios/vgabios/
H A Dvgabios.c1754 mov cl, #0x01 variable
1758 mov al, cl
1766 inc cl
1767 cmp cl, #0x04 variable
1783 mov cl, #0x01 variable
1787 mov al, cl
1795 inc cl
1796 cmp cl, #0x04 variable
2191 mov cl, #0x00 variable
2194 mov al, cl
2201 cmp cl, #0x10 variable
2292 mov cl, #0x00 variable
2305 cmp cl, #0x10 variable
2448 mov cl, al variable
2858 mov cl, [bx] variable
2859 and cl, #0x0f variable
[all...]
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcucdtst.c821 int32_t cl, i; local
825 for(cl=0; cl<12; ++cl) {
828 if(posixClasses[cl].fn(posixData[i].c)!=expect) {
830 posixClasses[cl].name, posixData[i].c, expect ? "FALSE" : "TRUE");
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dcalregts.cpp262 GregorianCalendar *cl = new GregorianCalendar(tz, status); local
268 cl->clear();
269 cl->set(1900, 15, 5, 5, 8, 13);
270 cl->get(UCAL_HOUR, status);
271 failure(status, "cl->get(UCAL_HOUR, status)");
273 delete cl;
/external/doclava/src/com/google/doclava/
H A DClassInfo.java48 public ClassTypePair(ClassInfo cl, TypeInfo t) { argument
49 mClassInfo = cl;
91 public ClassInfo(ClassDoc cl, String rawCommentText, SourcePositionInfo position, argument
108 mClass = cl;
304 ClassInfo cl = containingClass();
305 while (cl != null) {
306 ArrayList<TypeInfo> types = cl.asTypeInfo().typeArguments();
310 cl = cl.containingClass();
439 private static void gatherHiddenInterfaces(ClassInfo cl, HashSe argument
613 addFields(ClassInfo cl, TreeMap<String, FieldInfo> all) argument
649 gatherFields(ClassInfo owner, ClassInfo cl, HashMap<String, FieldInfo> fields) argument
1020 isDerivedFrom(ClassInfo cl) argument
1944 extendsClass(String cl) argument
1957 isAssignableTo(String cl) argument
2036 isConsistent(ClassInfo cl) argument
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dcalregts.cpp262 GregorianCalendar *cl = new GregorianCalendar(tz, status); local
268 cl->clear();
269 cl->set(1900, 15, 5, 5, 8, 13);
270 cl->get(UCAL_HOUR, status);
271 failure(status, "cl->get(UCAL_HOUR, status)");
273 delete cl;
/external/valgrind/main/coregrind/m_demangle/
H A Dcp-demangle.c1584 { "cl", NL ("()"), 2 },
2599 struct demangle_component *cl; local
2606 cl = cplus_demangle_type (di);
2637 return d_make_comp (di, DEMANGLE_COMPONENT_PTRMEM_TYPE, cl, mem);
2761 /* Subroutine of <expression> ::= cl <expression>+ E */
2799 ::= cl <expression>+ E
2929 if (!strcmp (code, "cl"))
4364 if (strcmp (d_left (dc)->u.s_operator.op->code, "cl") == 0
4387 if (strcmp (d_left (dc)->u.s_operator.op->code, "cl") != 0)
/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jar ... .Object run () throws java.lang.Exception Class cl } javassist/CtConstructor.class CtConstructor.java package javassist public ...
/external/chromium_org/third_party/mesa/src/include/CL/
H A Dcl.hpp36 * cl
47 * The interface is contained with a single C++ header file \em cl.hpp and all
48 * definitions are contained within the namespace \em cl. There is no additional
49 * requirement to include \em cl.h and to use either the C++ or original C
50 * bindings it is enough to simply include \em cl.hpp.
59 * http://www.khronos.org/registry/cl/specs/opencl-cplusplus-1.1.pdf
72 * #include <OpenCL/cl.hpp>
74 * #include <CL/cl.hpp>
92 * std::vector<cl::Platform> platforms;
93 * cl
189 namespace cl { namespace
[all...]
/external/mesa3d/include/CL/
H A Dcl.hpp36 * cl
47 * The interface is contained with a single C++ header file \em cl.hpp and all
48 * definitions are contained within the namespace \em cl. There is no additional
49 * requirement to include \em cl.h and to use either the C++ or original C
50 * bindings it is enough to simply include \em cl.hpp.
59 * http://www.khronos.org/registry/cl/specs/opencl-cplusplus-1.1.pdf
72 * #include <OpenCL/cl.hpp>
74 * #include <CL/cl.hpp>
92 * std::vector<cl::Platform> platforms;
93 * cl
189 namespace cl { namespace
[all...]
/external/svox/pico/lib/
H A Dpicoos.c564 MemCellHdr cl; local
577 cl = c->leftCell;
578 if (cl->size > 0) {
581 crr->leftCell = cl;
582 cl->size = ((cl->size + c->size) + cr->size);
586 cl->size = (cl->size + c->size);
587 cr->leftCell = cl;
/external/wpa_supplicant_8/hostapd/src/p2p/
H A Dp2p.c883 size_t cl, ch; local
890 for (cl = 0; cl < c->reg_classes; cl++) {
891 cla = &c->reg_class[cl];
912 cl++;
913 if (cl == c->reg_classes)
914 cl = 0;
917 reg_class = c->reg_class[cl].reg_class;
918 channel = c->reg_class[cl]
[all...]
/external/wpa_supplicant_8/src/p2p/
H A Dp2p.c883 size_t cl, ch; local
890 for (cl = 0; cl < c->reg_classes; cl++) {
891 cla = &c->reg_class[cl];
912 cl++;
913 if (cl == c->reg_classes)
914 cl = 0;
917 reg_class = c->reg_class[cl].reg_class;
918 channel = c->reg_class[cl]
[all...]

Completed in 6434 milliseconds

123456789