HomeSort by relevance Sort by last modified time
    Searched full:coerce (Results 26 - 50 of 116) sorted by null

12 3 4 5

  /external/clang/test/CodeGenCXX/
constructors.cpp 32 // CHECK: define void @_ZN1AC1E10ValueClass(%struct.A* %this, i64 %v.coerce) unnamed_addr
35 // CHECK: define void @_ZN1AC2E10ValueClass(%struct.A* %this, i64 %v.coerce) unnamed_addr
x86_64-arguments.cpp 22 // CHECK: define void @_Z2f34s3_1(i64 %x.coerce)
75 // CHECK: define i8* @_ZN6PR51793barENS_2B2E(i32* %b2.coerce)
microsoft-abi-sret-and-byval.cpp 92 // WIN64: define void @"\01?small_arg@@YAXUSmall@@@Z"(i32 %s.coerce)
97 // WIN64: define void @"\01?medium_arg@@YAXUMedium@@@Z"(i64 %s.coerce)
102 // WIN64: define void @"\01?small_arg_with_ctor@@YAXUSmallWithCtor@@@Z"(i32 %s.coerce)
  /external/llvm/test/Transforms/MergeFunc/
vector.ll 58 declare void @_ZNSt6vectorIPvSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_(%"class.std::vector"* nocapture %this, i8** %__position.coerce, i8** nocapture %__x) align 2
68 declare void @_ZNSt6vectorIlSaIlEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPlS1_EERKl(%"class.std::vector"* nocapture %this, i64* %__position.coerce, i64* nocapture %__x) align 2
  /external/clang/test/CodeGen/
sparcv9-abi.c 65 // CHECK: define i64 @f_reg(i64 %x.coerce)
103 // CHECK: define i64 @f_tiny(i64 %x.coerce)
104 // CHECK: %[[HB:[^ ]+]] = lshr i64 %x.coerce, 56
x86_32-arguments-linux.c 6 // CHECK: i64 %a2.coerce, %struct.s56_1* byval align 4,
x86_32-arguments-darwin.c 219 // CHECK: define i32 @f54(i32 %arg.coerce)
232 // CHECK: i64 %a2.coerce, %struct.s56_1* byval align 4,
233 // CHECK: i64 %a4.coerce, %struct.s56_2* byval align 4,
  /external/clang/test/CodeGenObjC/
ns_consume_null_check.m 60 // CHECK: [[T0:%.*]] = bitcast { float, float }* [[COERCE:%.*]] to <2 x float>*
62 // CHECK-NEXT: [[T0:%.*]] = getelementptr inbounds { float, float }* [[COERCE]], i32 0, i32 0
64 // CHECK-NEXT: [[T0:%.*]] = getelementptr inbounds { float, float }* [[COERCE]], i32 0, i32 1
  /external/llvm/test/CodeGen/X86/
muloti.ll 39 %coerce = alloca i128, align 16
43 %0 = bitcast i128* %coerce to %0*
48 %a = load i128* %coerce, align 16
  /external/llvm/test/Transforms/DebugIR/
vector.ll 6 define <4 x float> @_Z3fooDv2_fS_(double %a.coerce, double %b.coerce) #0 {
13 store double %a.coerce, double* %5, align 1 ; CHECK-NEXT: !dbg
17 store double %b.coerce, double* %6, align 1 ; CHECK-NEXT: !dbg
  /development/samples/ApiDemos/res/values/
arrays.xml 48 <item>Coerce to text</item>
49 <item>Coerce to styled text</item>
50 <item>Coerce to HTML text</item>
  /external/clang/lib/CodeGen/
CGCall.cpp 465 // them are direct or extend without a specified coerce type, specify the
637 SrcPtr = CGF.Builder.CreateConstGEP2_32(SrcPtr, 0, 0, "coerce.dive");
664 return CGF.Builder.CreateBitCast(Val, Ty, "coerce.val");
667 Val = CGF.Builder.CreatePtrToInt(Val, CGF.IntPtrTy, "coerce.val.pi");
682 Val = CGF.Builder.CreateLShr(Val, SrcSize - DstSize, "coerce.highbits");
683 Val = CGF.Builder.CreateTrunc(Val, DestIntTy, "coerce.val.ii");
685 Val = CGF.Builder.CreateZExt(Val, DestIntTy, "coerce.val.ii");
686 Val = CGF.Builder.CreateShl(Val, DstSize - SrcSize, "coerce.highbits");
690 Val = CGF.Builder.CreateIntCast(Val, DestIntTy, false, "coerce.val.ii");
695 Val = CGF.Builder.CreateIntToPtr(Val, Ty, "coerce.val.ip")
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
aepack.py 6 coerce(x, wanted_sample) coerces a python object to another python object
255 def coerce(data, egdata): function
256 """Coerce a python object to another type using the AE coercers"""
  /external/chromium_org/tools/site_compare/drivers/win32/
mouse.py 128 # Coerce the coords to int to avoid a warning from pywin32
  /external/jpeg/
coderules.doc 76 declaration to coerce actual parameters into the right types. Therefore, use
  /external/qemu/distrib/jpeg-6b/
coderules.doc 76 declaration to coerce actual parameters into the right types. Therefore, use
  /frameworks/base/core/java/android/content/
ClipboardManager.java 192 * the primary clip and tries to coerce it to a string.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_descr.py     [all...]
test_builtin.py 232 self.assertTrue(not fcmp(coerce(1, 1.1), (1.0, 1.1)))
233 self.assertEqual(coerce(1, 1L), (1L, 1L))
234 self.assertTrue(not fcmp(coerce(1L, 1.1), (1.0, 1.1)))
235 self.assertRaises(TypeError, coerce)
239 self.assertRaises(ValueError, coerce, 42, BadNumber())
240 self.assertRaises(OverflowError, coerce, 0.5, int("12345" * 1000))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_descr.py     [all...]
test_builtin.py 232 self.assertTrue(not fcmp(coerce(1, 1.1), (1.0, 1.1)))
233 self.assertEqual(coerce(1, 1L), (1L, 1L))
234 self.assertTrue(not fcmp(coerce(1L, 1.1), (1.0, 1.1)))
235 self.assertRaises(TypeError, coerce)
239 self.assertRaises(ValueError, coerce, 42, BadNumber())
240 self.assertRaises(OverflowError, coerce, 0.5, int("12345" * 1000))
    [all...]
  /external/chromium_org/gin/test/
expect.js 50 // Coerce dates and booleans to numeric primitive values. Dates are
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
intnum.pxi 39 # Coerce to intnum if not already
  /external/chromium_org/ui/views/controls/scrollbar/
bitmap_scroll_bar.cc 266 // by the last call to |Update|, but coerce the width/height to be the
  /external/valgrind/main/VEX/pub/
libvex_basictypes.h 87 /* Use this to coerce the result of a C comparison to a Bool. This is

Completed in 341 milliseconds

12 3 4 5