HomeSort by relevance Sort by last modified time
    Searched refs:cl (Results 126 - 150 of 1085) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/llvm/lib/Target/Hexagon/
HexagonPeephole.cpp 61 static cl::opt<bool> DisableHexagonPeephole("disable-hexagon-peephole",
62 cl::Hidden, cl::ZeroOrMore, cl::init(false),
63 cl::desc("Disable Peephole Optimization"));
65 static cl::opt<bool> DisablePNotP("disable-hexagon-pnotp",
66 cl::Hidden, cl::ZeroOrMore, cl::init(false),
67 cl::desc("Disable Optimization of PNotP"))
    [all...]
  /external/llvm/tools/obj2yaml/
obj2yaml.cpp 47 cl::opt<std::string> InputFilename(cl::Positional, cl::desc("<input file>"),
48 cl::init("-"));
51 cl::ParseCommandLineOptions(argc, argv);
  /libcore/luni/src/main/java/javax/net/ssl/
SSLSocketFactory.java 65 ClassLoader cl = Thread.currentThread().getContextClassLoader(); local
66 if (cl == null) {
67 cl = ClassLoader.getSystemClassLoader();
70 final Class<?> sfc = Class.forName(newName, true, cl);
74 + cl.toString() + ": " + e.getMessage());
  /external/libvncserver/client_examples/
gtkvncviewer.c 26 static rfbClient *cl; variable
38 rfbClientSetClientData (cl, gtk_init, widget);
44 cl->frameBuffer= image->mem;
46 cl->width = widget->allocation.width;
47 cl->height = widget->allocation.height;
49 cl->format.bitsPerPixel = image->bits_per_pixel;
50 cl->format.redShift = image->visual->red_shift;
51 cl->format.greenShift = image->visual->green_shift;
52 cl->format.blueShift = image->visual->blue_shift;
54 cl->format.redMax = (1 << image->visual->red_prec) - 1
    [all...]
  /external/llvm/tools/llvm-nm/
llvm-nm.cpp 52 cl::opt<OutputFormatTy> OutputFormat(
53 "format", cl::desc("Specify output format"),
54 cl::values(clEnumVal(bsd, "BSD format"), clEnumVal(sysv, "System V format"),
57 cl::init(bsd));
58 cl::alias OutputFormat2("f", cl::desc("Alias for --format"),
59 cl::aliasopt(OutputFormat));
61 cl::list<std::string> InputFilenames(cl::Positional, cl::desc("<input files>")
    [all...]
  /frameworks/base/tools/aidl/
Type.h 51 Variable* parcel, Variable** cl);
53 Variable* parcel, Variable** cl);
60 Variable* parcel, Variable** cl);
62 Variable* parcel, Variable** cl);
67 Variable* data, Variable** cl);
106 Variable* parcel, Variable** cl);
113 Variable* parcel, Variable** cl);
115 Variable* parcel, Variable** cl);
120 Variable* data, Variable** cl);
143 Variable* parcel, Variable** cl);
    [all...]
  /external/libvncserver/libvncserver/
cursor.c 36 rfbSendCursorShape(rfbClientPtr cl)
49 pCursor = cl->screen->getCursorPtr(cl);
52 if (cl->useRichCursorEncoding) {
54 rfbMakeRichCursorFromXCursor(cl->screen,pCursor);
58 rfbMakeXCursorFromRichCursor(cl->screen,pCursor);
71 if (cl->ublen + sz_rfbFramebufferUpdateRectHeader > UPDATE_BUF_SIZE ) {
72 if (!rfbSendUpdateBuf(cl))
77 memcpy(&cl->updateBuf[cl->ublen], (char *)&rect
729 rfbClientPtr cl; local
    [all...]
sockets.c 267 rfbClientPtr cl; local
283 while((cl = rfbClientIteratorNext(i))) {
284 if (cl->onHold)
286 if (FD_ISSET(cl->sock, &(rfbScreen->allFds)))
287 rfbSendFileTransferChunk(cl);
361 while((cl = rfbClientIteratorNext(i))) {
363 if (cl->onHold)
366 if (FD_ISSET(cl->sock, &(rfbScreen->allFds)))
368 if (FD_ISSET(cl->sock, &fds))
369 rfbProcessClientMessage(cl);
    [all...]
  /external/conscrypt/src/compat/java/dalvik/system/
BlockGuard.java 26 ClassLoader cl = ClassLoader.getSystemClassLoader(); typedefs
27 Class<?> c_closeGuard = cl.loadClass("dalvik.system.BlockGuard");
32 Class<?> c_policy = cl.loadClass("dalvik.system.BlockGuard.Policy");
  /external/llvm/lib/Transforms/IPO/
PassManagerBuilder.cpp 33 static cl::opt<bool>
34 RunLoopVectorization("vectorize-loops", cl::Hidden,
35 cl::desc("Run the Loop vectorization passes"));
37 static cl::opt<bool>
38 RunSLPVectorization("vectorize-slp", cl::Hidden,
39 cl::desc("Run the SLP vectorization passes"));
41 static cl::opt<bool>
42 RunBBVectorization("vectorize-slp-aggressive", cl::Hidden,
43 cl::desc("Run the BB vectorization passes"));
45 static cl::opt<bool
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
SpringLoadedDragController.java 42 public void setAlarm(CellLayout cl) {
44 mAlarm.setAlarm((cl == null) ? ENTER_SPRING_LOAD_CANCEL_HOVER_TIME :
46 mScreen = cl;
  /packages/apps/Launcher3/src/com/android/launcher3/
SpringLoadedDragController.java 42 public void setAlarm(CellLayout cl) {
44 mAlarm.setAlarm((cl == null) ? ENTER_SPRING_LOAD_CANCEL_HOVER_TIME :
46 mScreen = cl;
  /external/compiler-rt/lib/builtins/i386/
ashldi3.S 47 shldl %cl, %eax, %edx // left shift high by count
48 shll %cl, %eax // left shift low by count
53 shll %cl, %edx // shift high by count - 32
lshrdi3.S 48 shrdl %cl, %edx, %eax // right shift low by count
49 shrl %cl, %edx // right shift high by count
54 shrl %cl, %eax // shift low by count - 32
  /external/libvncserver/examples/
rotate.c 67 static void HandleKey(rfbBool down,rfbKeySym key,rfbClientPtr cl)
71 rfbCloseClient(cl);
73 rfbRotate(cl->screen);
75 rfbRotateCounterClockwise(cl->screen);
77 rfbFlipHorizontally(cl->screen);
79 rfbFlipVertically(cl->screen);
  /external/javassist/src/main/javassist/tools/reflect/
Loader.java 32 * javassist.tools.reflect.Loader cl
34 * cl.makeReflective("Person", "MyMetaobject",
36 * cl.run("MyApp", args);
57 * javassist.tools.reflect.Loader cl = new javassist.tools.reflect.Loader();
58 * cl.makeReflective("Person", "MyMetaobject",
60 * cl.run("MyApp", args);
84 * javassist.Loader cl
88 * cl.run("MyApp", args);
124 Loader cl = new Loader(); local
125 cl.run(args)
    [all...]
  /external/libvncserver/test/
cursortest.c 268 static void doptr(int buttonMask,int x,int y,rfbClientPtr cl)
276 SetRichCursor(cl->screen);
277 SetAlphaCursor(cl->screen,2);
280 SetRichCursor(cl->screen);
281 SetAlphaCursor(cl->screen,1);
284 SetRichCursor2(cl->screen);
285 SetAlphaCursor(cl->screen,0);
288 SetXCursor(cl->screen);
291 SetRichCursor2(cl->screen);
292 SetAlphaCursor(cl->screen,2)
    [all...]
  /external/llvm/lib/Analysis/
RegionInfo.cpp 40 static cl::opt<bool,true>
43 cl::location(RegionInfoBase<RegionTraits<Function>>::VerifyRegionInfo),
44 cl::desc("Verify region info (time consuming)"));
47 static cl::opt<Region::PrintStyle, true> printStyleX("print-region-style",
48 cl::location(RegionInfo::printStyle),
49 cl::Hidden,
50 cl::desc("style of printing regions"),
51 cl::values(
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCAsmInfo.cpp 30 static cl::opt<AsmWriterFlavorTy>
31 AsmWriterFlavor("x86-asm-syntax", cl::init(ATT),
32 cl::desc("Choose style of code to emit from X86 backend:"),
33 cl::values(clEnumValN(ATT, "att", "Emit AT&T-style assembly"),
37 static cl::opt<bool>
38 MarkedJTDataRegions("mark-data-regions", cl::init(false),
39 cl::desc("Mark code section jump table data regions."),
40 cl::Hidden);
  /external/skia/tools/skpdiff/
SkCLImageDiffer.h 12 # include <OpenCL/cl.h>
14 # include <CL/cl.h>
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
ClassBrowser.py 101 for key, cl in dict.items():
102 if cl.module == name:
104 if hasattr(cl, 'super') and cl.super:
106 for sup in cl.super:
111 if sup.module != cl.module:
115 items.append((cl.lineno, s))
116 self.classes[s] = cl
130 self.cl = self.classes[self.name]
132 self.cl = Non
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
ClassBrowser.py 101 for key, cl in dict.items():
102 if cl.module == name:
104 if hasattr(cl, 'super') and cl.super:
106 for sup in cl.super:
111 if sup.module != cl.module:
115 items.append((cl.lineno, s))
116 self.classes[s] = cl
130 self.cl = self.classes[self.name]
132 self.cl = Non
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCTargetMachine.cpp 29 static cl::
30 opt<bool> DisableCTRLoops("disable-ppc-ctrloops", cl::Hidden,
31 cl::desc("Disable CTR loops for PPC"));
33 static cl::
34 opt<bool> DisablePreIncPrep("disable-ppc-preinc-prep", cl::Hidden,
35 cl::desc("Disable PPC loop preinc prep"));
37 static cl::opt<bool>
39 cl::Hidden, cl::desc("Schedule VSX FMA instruction mutation early"));
41 static cl::opt<bool
    [all...]
  /external/llvm/tools/bugpoint/
OptimizerDriver.cpp 42 extern cl::opt<std::string> OutputPrefix;
45 static cl::opt<bool> PreserveBitcodeUseListOrder(
47 cl::desc("Preserve use-list order when writing LLVM bitcode."),
48 cl::init(true), cl::Hidden);
53 cl::opt<std::string> ChildOutput("child-output", cl::ReallyHidden);
54 cl::opt<std::string> OptCmd("opt-command", cl::init(""),
55 cl::desc("Path to opt. (default: search path
    [all...]
  /external/zlib/src/contrib/inflate86/
inffas86.c 165 " movb %%bl, %%cl\n" /* cl = bits, needs it for shifting */
167 " shlq %%cl, %%rax\n"
184 " movb %%bl, %%cl\n" /* cl = bits, needs it for shifting */
186 " shlq %%cl, %%rax\n"
193 " movb %%ah, %%cl\n" /* cl = this.bits */
195 " shrq %%cl, %%rdx\n" /* hold >>= this.bits */
209 " movb %%ah, %%cl\n" /* cl = this.bits *
825 mov cl, bl \/* cl = bits, needs it for shifting *\/ local
836 mov cl, ah \/* cl = this.bits *\/ local
852 mov cl, al local
856 and cl, 15 \/* op &= 15 *\/ local
864 mov cl, bl \/* cl = bits, needs it for shifting *\/ local
868 mov cl, ch \/* move op back to ecx *\/ local
886 mov cl, bl \/* cl = bits, needs it for shifting *\/ local
900 mov cl, ah local
903 mov cl, al \/* cl = this.op *\/ local
907 and cl, 15 \/* op &= 15 *\/ local
915 mov cl, bl \/* cl = bits, needs it for shifting *\/ local
919 mov cl, ch \/* move op back to ecx *\/ local
    [all...]

Completed in 743 milliseconds

1 2 3 4 56 7 8 91011>>