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

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_cl.py 2 """Whimpy test script for the cl module
7 cl = import_module('cl') variable
67 # This is a very inobtrusive test for the existence of the cl
73 print 'Touching cl module attributes...'
77 getattr(cl, attr)
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ia32/
ARShiftU64.c 25 mov cl, byte ptr [Count] local
28 test cl, 32 local
31 shrd eax, edx, cl
32 sar edx, cl
LShiftU64.c 33 mov cl, byte ptr [Count] local
36 test cl, 32 // Count >= 32? local
39 shld edx, eax, cl
40 shl eax, cl
RShiftU64.c 33 mov cl, byte ptr [Count] local
36 test cl, 32 local
39 shrd eax, edx, cl
40 shr edx, cl
LRotU64.c 33 mov cl, byte ptr [Count] local
36 shld ebx, edx, cl
37 shld edx, eax, cl
38 ror ebx, cl
39 shld eax, ebx, cl
40 test cl, 32 ; Count >= 32? local
RRotU64.c 25 mov cl, byte ptr [Count] local
28 shrd ebx, eax, cl
29 shrd eax, edx, cl
30 rol ebx, cl
31 shrd edx, ebx, cl
32 test cl, 32 // Count >= 32? local
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ia32/
ARShiftU64.c 39 mov cl, byte ptr [Count] local
42 test cl, 32 local
47 shrd eax, edx, cl
48 sar edx, cl
LShiftU64.c 39 mov cl, byte ptr [Count] local
42 test cl, 32 // Count >= 32? local
47 shld edx, eax, cl
48 shl eax, cl
RShiftU64.c 39 mov cl, byte ptr [Count] local
42 test cl, 32 local
47 shrd eax, edx, cl
48 shr edx, cl
LRotU64.c 40 mov cl, byte ptr [Count] local
43 shld ebx, edx, cl
44 shld edx, eax, cl
45 ror ebx, cl
46 shld eax, ebx, cl
47 test cl, 32 ; Count >= 32? local
RRotU64.c 40 mov cl, byte ptr [Count] local
43 shrd ebx, eax, cl
44 shrd eax, edx, cl
45 rol ebx, cl
46 shrd edx, ebx, cl
47 test cl, 32 // Count >= 32? local
  /external/python/cpython2/Lib/test/
test_cl.py 1 """Whimpy test script for the cl module
6 cl = import_module('cl') variable
66 # This is a very inobtrusive test for the existence of the cl
72 print 'Touching cl module attributes...'
76 getattr(cl, attr)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_cl.py 2 """Whimpy test script for the cl module
7 cl = import_module('cl') variable
67 # This is a very inobtrusive test for the existence of the cl
73 print 'Touching cl module attributes...'
77 getattr(cl, attr)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_cl.py 2 """Whimpy test script for the cl module
7 cl = import_module('cl') variable
67 # This is a very inobtrusive test for the existence of the cl
73 print 'Touching cl module attributes...'
77 getattr(cl, attr)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_cl.py 2 """Whimpy test script for the cl module
7 cl = import_module('cl') variable
67 # This is a very inobtrusive test for the existence of the cl
73 print 'Touching cl module attributes...'
77 getattr(cl, attr)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_cl.py 2 """Whimpy test script for the cl module
7 cl = import_module('cl') variable
67 # This is a very inobtrusive test for the existence of the cl
73 print 'Touching cl module attributes...'
77 getattr(cl, attr)
  /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);
  /device/linaro/bootloader/edk2/CryptoPkg/Library/IntrinsicLib/Ia32/
MathLShiftS64.c 27 cmp cl, 64 local
33 cmp cl, 32 local
35 shld edx, eax, cl
36 shl eax, cl
45 and cl, 31 local
46 shl edx, cl
MathRShiftU64.c 27 cmp cl, 64 local
33 cmp cl, 32 local
35 shrd eax, edx, cl
36 shr edx, cl
45 and cl, 31 local
46 shr eax, cl
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/
Log2.c 52 mov cl, 0FFH local
72 mov al, cl
LShiftU64.c 54 ; CL is valid from 0 - 31. shld will move EDX:EAX by CL times but EAX is not touched
55 ; For CL of 32 - 63, it will be shifted 0 - 31 so we will move eax to edx later.
59 shld edx, eax, cl
60 shl eax, cl local
  /device/linaro/bootloader/edk2/StdLib/LibC/CRT/Ia32/
llshl.c 27 cmp cl, 64 local
33 cmp cl, 32 local
35 shld edx, eax, cl
36 shl eax, cl
45 and cl, 31 local
46 shl edx, cl
llshr.c 28 cmp cl,64 local
34 cmp cl, 32 local
36 shrd eax,edx,cl
37 sar edx,cl
46 and cl,31 local
47 sar eax,cl
  /external/javassist/sample/evolve/
DemoLoader.java 32 Loader cl = new Loader(); local
33 cl.addTranslator(cp, translator);
36 cl.run("sample.evolve.DemoServer", args);

Completed in 1138 milliseconds

1 2 3 4 5 6 7 8 91011>>