HomeSort by relevance Sort by last modified time
    Searched defs:Simple (Results 1 - 17 of 17) sorted by null

  /external/clang/test/Sema/
builtins-arm-exclusive.c 3 struct Simple {
16 sum += __builtin_arm_ldrex((struct Simple **)addr)->a;
22 sum += __builtin_arm_ldrex((struct Simple *)addr).a; // expected-error {{address argument to atomic builtin must be a pointer to}}
33 struct Simple var = {0};
40 res |= __builtin_arm_strex(&var, (struct Simple **)addr);
47 res |= __builtin_arm_strex(var, (struct Simple *)addr); // expected-error {{address argument to atomic builtin must be a pointer to}}
48 res |= __builtin_arm_strex(var, (struct Simple **)addr); // expected-error {{passing 'struct Simple' to parameter of incompatible type 'struct Simple *'}}
49 res |= __builtin_arm_strex(&var, (struct Simple **)addr).a; // expected-error {{is not a structure or union}
    [all...]
  /external/clang/test/CodeGen/
builtins-arm-exclusive.c 22 struct Simple {
69 sum += __builtin_arm_ldrex((struct Simple **)addr)->a;
71 // CHECK: inttoptr i32 [[INTRES]] to %struct.Simple*
79 struct Simple var = {0};
100 res |= __builtin_arm_strex(&var, (struct Simple **)addr);
  /external/lzma/CS/7zip/Common/
CommandLineParser.cs 10 Simple,
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
RuleBasedCollatorTest.java 38 String Simple = "< a< b< c< d";
39 rbc = new RuleBasedCollator(Simple);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
Font.h 165 enum CodePath { Auto, Simple, Complex, SimpleWithGlyphOverflow };
167 static CodePath characterRangeCodePath(const LChar*, unsigned) { return Simple; }
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_pair_regalloc.c 69 unsigned int Simple;
191 if (*file == RC_FILE_TEMPORARY && s->Simple)
712 * integer value is zero, then a simple register allocator will be used that
742 s.Simple = 1;
746 /* Rewrite inputs and if we are doing the simple allocation, rewrite
  /external/chromium_org/third_party/skia/src/sfnt/
SkOTTable_glyf.h 68 SK_OT_SHORT numberOfContours; //== -1 Composite, > 0 Simple
74 struct Simple {
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_pair_regalloc.c 69 unsigned int Simple;
191 if (*file == RC_FILE_TEMPORARY && s->Simple)
712 * integer value is zero, then a simple register allocator will be used that
742 s.Simple = 1;
746 /* Rewrite inputs and if we are doing the simple allocation, rewrite
  /external/skia/src/sfnt/
SkOTTable_glyf.h 68 SK_OT_SHORT numberOfContours; //== -1 Composite, > 0 Simple
74 struct Simple {
  /external/clang/lib/CodeGen/
CGValue.h 35 /// simple LLVM SSA value, a pair of SSA values for complex numbers, or the
106 /// bitfields, this is not a simple LLVM pointer, it may be a pointer plus a
110 Simple, // This is a normal l-value, use getAddress().
191 bool isSimple() const { return LVType == Simple; }
261 // simple lvalue
296 R.LVType = Simple;
  /external/javassist/src/test/test/javassist/convert/
ArrayAccessReplaceTest.java 14 private static SimpleInterface simple; field in class:ArrayAccessReplaceTest
19 CtClass simpleClass = pool.get(ArrayAccessReplaceTest.class.getName() + "$Simple");
24 simple = (SimpleInterface) simpleClass.toClass(new URLClassLoader(new URL[0], getClass().getClassLoader()), Class.class.getProtectionDomain()).newInstance();
41 simple.setBoolean(i, value);
46 assertEquals(value, simple.getBoolean(i));
52 simple.setByte(i, i);
56 assertEquals(i, simple.getByte(i));
62 simple.setShort(i, i);
66 assertEquals(i, simple.getShort(i));
72 simple.setChar(i, i)
    [all...]
  /external/chromium_org/ipc/
ipc_sync_channel_unittest.cc 300 void Simple(bool pump_during_send) {
308 TEST_F(IPCSyncChannelTest, Simple) {
309 Simple(false);
310 Simple(true);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_builtin.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_builtin.py     [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp     [all...]
  /external/dropbear/libtomcrypt/
crypt.tex 153 Not only did I strive to make a consistent and simple API to work with but I also attempted to make the library
158 On top of making the build simple and the API approachable I've also attempted for a reasonably high level of
226 In general the API is very simple to memorize and use. Most of the functions return either {\bf void} or {\bf int}. Functions
495 \subsection{Simple Encryption Demonstration}
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]

Completed in 287 milliseconds