HomeSort by relevance Sort by last modified time
    Searched refs:As (Results 1 - 25 of 556) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/swiftshader/src/Shader/
ShaderCore.cpp 10 // distributed under the License is distributed on an "AS IS" BASIS,
123 x0 = Min(x0, As<Float4>(Int4(0x43010000))); // 129.00000e+0f
124 x0 = Max(x0, As<Float4>(Int4(0xC2FDFFFF))); // -126.99999e+0f
132 x1 = As<Float4>(Int4(0x3AF61905)); // 1.8775767e-3f
134 x1 += As<Float4>(Int4(0x3C134806)); // 8.9893397e-3f
136 x1 += As<Float4>(Int4(0x3D64AA23)); // 5.5826318e-2f
138 x1 += As<Float4>(Int4(0x3E75EAD4)); // 2.4015361e-1f
140 x1 += As<Float4>(Int4(0x3F31727B)); // 6.9315308e-1f
142 x1 += As<Float4>(Int4(0x3F7FFFFF)); // 9.9999994e-1f
143 x1 *= As<Float4>(x2)
    [all...]
PixelRoutine.cpp 10 // distributed under the License is distributed on an "AS IS" BASIS,
364 value = CmpGT(As<SByte8>(value), *Pointer<SByte8>(data + OFFSET(DrawData,stencil[CCW].referenceMaskedSignedQ)));
377 value = CmpGT(As<SByte8>(value), *Pointer<SByte8>(data + OFFSET(DrawData,stencil[CCW].referenceMaskedSignedQ)));
383 equal = CmpGT(As<SByte8>(equal), As<SByte8>(value));
388 value = CmpGT(As<SByte8>(value), *Pointer<SByte8>(data + OFFSET(DrawData,stencil[CCW].referenceMaskedSignedQ)));
722 Z = As<Float4>(As<Int4>(Z) & *Pointer<Int4>(constants + OFFSET(Constants,maskD4X) + zMask * 16, 16));
723 zValue = As<Float4>(As<Int4>(zValue) & *Pointer<Int4>(constants + OFFSET(Constants,invMaskD4X) + zMask * 16, 16))
    [all...]
SamplerCore.cpp 10 // distributed under the License is distributed on an "AS IS" BASIS,
110 Float lodBias = (function == Fetch) ? Float4(As<Int4>(q)).x : q.x;
156 c.x = MulHigh(As<UShort4>(c.x), UShort4(0x10000000 / 0xF800));
157 c.y = MulHigh(As<UShort4>(c.y), UShort4(0x10000000 / 0xFC00));
158 c.z = MulHigh(As<UShort4>(c.z), UShort4(0x10000000 / 0xF800));
177 c[component] = As<UShort4>(c[component]) >> 4;
342 Float lodBias = (function == Fetch) ? Float4(As<Int4>(q)).x : q.x;
409 c.x = Float4(As<UShort4>(cs.x)) * Float4(1.0f / 0xF800);
410 c.y = Float4(As<UShort4>(cs.y)) * Float4(1.0f / 0xFC00);
411 c.z = Float4(As<UShort4>(cs.z)) * Float4(1.0f / 0xF800)
    [all...]
  /external/clang/test/SemaCXX/
cxx1y-generic-lambdas-variadics.cpp 17 auto L = [](auto ... as) { };
39 auto L = [](auto ... As) {
44 auto L = [](auto A, auto B, auto ... As) {
51 auto L = [](auto ... As) {
52 print("\nL::As = ", As ...);
53 return [](decltype(As) ... as, auto ... Bs) {
54 print("\nL::Inner::as = ", as ...)
    [all...]
unaddressable-functions.cpp 53 template <typename Fn, typename... Args> void call(Fn F, Args... As) {
54 F(As...);
70 void callMem(Fn F, T t, Args... As) {
71 (t.*F)(As...);
93 template <typename Fn, typename... Args> auto call(Fn F, Args... As) {
94 return F(As...);
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
p3-generic-lambda-1y.cpp 9 auto GL2 = [](auto ... As) -> int { return vfoo(As...); };
10 auto GL3 = [](int i, char c, auto* ... As) -> int { return vfoo(As...); };
12 auto GL4 = [](int i, char c, auto* ... As) -> int { return vfoo(As...); };
18 auto GL2 = [](auto ... As) -> int { return vfoo(As...); };
  /external/harfbuzz_ng/src/
hb-ot-shape-complex-myanmar-machine.rl 21 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
40 # Same order as enum myanmar_category_t. Not sure how to avoid duplication.
42 As = 18;
67 k = (Ra As H); # Kinzi
71 medial_group = MY? MR? MW? MH? As?;
72 main_vowel_group = VPre* VAbv* VBlw* A* (DB As?)?;
73 post_vowel_group = VPst MH? As* VAbv* A* (DB As?)?;
74 pwo_tone_group = PT A* DB? As?;
76 complex_syllable_tail = As* medial_group main_vowel_group post_vowel_group* pwo_tone_group* V* j?
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.mem/
p5.cpp 38 T As() {
52 template float Foo::As();
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/x86/
obj6.go 23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
83 switch p.As {
95 // As a register, TLS refers to the thread-local storage base, and it
101 // Semantically it is off(reg), but the (TLS*1) annotation marks this as
144 // guarantee we are producing byte-identical binaries as before this code.
146 if (p.As == AMOVQ || p.As == AMOVL) && p.From.Type == obj.TYPE_REG && p.From.Reg == REG_TLS && p.To.Type == obj.TYPE_REG && REG_AX <= p.To.Reg && p.To.Reg <= REG_R15 && ctxt.Headtype != obj.Hsolaris {
162 // as the 2-instruction sequence if necessary.
167 if (p.As == AMOVQ || p.As == AMOVL) && p.From.Type == obj.TYPE_MEM && p.From.Reg == REG_TLS && p.To.Type == obj.TYPE_REG && (…)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/internal/obj/x86/
obj6.go 23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
83 switch p.As {
95 // As a register, TLS refers to the thread-local storage base, and it
101 // Semantically it is off(reg), but the (TLS*1) annotation marks this as
144 // guarantee we are producing byte-identical binaries as before this code.
146 if (p.As == AMOVQ || p.As == AMOVL) && p.From.Type == obj.TYPE_REG && p.From.Reg == REG_TLS && p.To.Type == obj.TYPE_REG && REG_AX <= p.To.Reg && p.To.Reg <= REG_R15 && ctxt.Headtype != obj.Hsolaris {
162 // as the 2-instruction sequence if necessary.
167 if (p.As == AMOVQ || p.As == AMOVL) && p.From.Type == obj.TYPE_MEM && p.From.Reg == REG_TLS && p.To.Type == obj.TYPE_REG && (…)
    [all...]
  /external/clang/lib/CodeGen/
EHScopeStack.h 33 /// emitted as a branch to the basic block for the label, and (if it
179 /// isEHCleanupKind - true if the cleanup was pushed as an EH
187 /// same EH context as when the cleanup was pushed, i.e. the
197 template <class T, class... As>
199 typedef std::tuple<typename DominatingValue<As>::saved_type...> SavedTuple;
206 return T{DominatingValue<As>::restore(CGF, std::get<Is>(Saved))...};
210 restore(CGF, llvm::index_sequence_for<As...>()).Emit(CGF, flags);
214 ConditionalCleanup(typename DominatingValue<As>::saved_type... A)
222 // CGException.cpp; the definition is here because it's used as a
243 /// an as-yet unemitted label, i.e. a label for which we don't ye
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/ppc64/
obj9.go 22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
43 // Rewrite BR/BL to symbol as TYPE_BRANCH.
44 switch p.As {
56 switch p.As {
99 switch p.As {
103 p.As = AADDC
109 p.As = AADDCCC
115 p.As = AADD
125 if p.As == obj.ADUFFCOPY || p.As == obj.ADUFFZERO
    [all...]
  /prebuilts/go/linux-x86/src/cmd/internal/obj/ppc64/
obj9.go 22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
43 // Rewrite BR/BL to symbol as TYPE_BRANCH.
44 switch p.As {
56 switch p.As {
99 switch p.As {
103 p.As = AADDC
109 p.As = AADDCCC
115 p.As = AADD
125 if p.As == obj.ADUFFCOPY || p.As == obj.ADUFFZERO
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/arm64/
obj7.go 23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
41 var complements = []obj.As{
56 p.As = AMOVD
73 p.As = AMOVD
80 p.As = ACMP
90 p.As = ASUB
98 p.As = ACMP
116 p.As = ACMP
123 p.As = ABEQ
127 p.As = AAD
    [all...]
  /prebuilts/go/linux-x86/src/cmd/internal/obj/arm64/
obj7.go 23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
41 var complements = []obj.As{
56 p.As = AMOVD
73 p.As = AMOVD
80 p.As = ACMP
90 p.As = ASUB
98 p.As = ACMP
116 p.As = ACMP
123 p.As = ABEQ
127 p.As = AAD
    [all...]
  /external/v8/src/inspector/
v8-regex.cc 64 if (!exec.As<v8::Function>()
79 v8::Local<v8::Array> result = returnValue.As<v8::Array>();
87 *matchLength = match.As<v8::String>()->Length();
90 return matchOffset.As<v8::Int32>()->Value() + startFrom;
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/arm/
obj5.go 23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
47 // Rewrite B/BL to symbol as TYPE_BRANCH.
48 switch p.As {
59 switch p.As {
66 ctxt.Diag("%v: TLS MRC instruction must write to R0 as it might get translated into a BL instruction", p.Line())
76 p.As = AMOVW
86 p.As = ABL
94 p.As = AMOVW
104 p.As = AWORD
108 switch p.As {
    [all...]
  /prebuilts/go/linux-x86/src/cmd/internal/obj/arm/
obj5.go 23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
47 // Rewrite B/BL to symbol as TYPE_BRANCH.
48 switch p.As {
59 switch p.As {
66 ctxt.Diag("%v: TLS MRC instruction must write to R0 as it might get translated into a BL instruction", p.Line())
76 p.As = AMOVW
86 p.As = ABL
94 p.As = AMOVW
104 p.As = AWORD
108 switch p.As {
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/python/
pybackward.swg 8 #define SWIG_As_frag(Type...) %fragment_name(As, Type)
9 #define SWIG_As_name(Type...) %symbol_name(As, Type)
  /external/swiftshader/src/Main/
FrameBuffer.cpp 10 // distributed under the License is distributed on an "AS IS" BASIS,
256 UShort4 c0 = As<UShort4>(Swizzle(*Pointer<Short4>(s + 0), 0xC6)) >> 8;
257 UShort4 c1 = As<UShort4>(Swizzle(*Pointer<Short4>(s + 8), 0xC6)) >> 8;
259 *Pointer<Int2>(d) = As<Int2>(Pack(c0, c1));
303 UShort4 c = As<UShort4>(Swizzle(*Pointer<Short4>(s), 0xC6)) >> 8;
305 *Pointer<Int>(d) = Int(As<Int2>(Pack(c, c)));
367 *Pointer<Int2>(d) = As<Int2>(Pack(c0, c1));
413 *Pointer<Int>(d) = Int(As<Int2>(Pack(c, c)));
507 Int c = Int(As<Int2>(Pack(cc, cc)));
596 c2 = Unpack(As<Byte4>(rgb))
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/arch/
arch.go 31 Instructions map[string]obj.As
110 instructions := make(map[string]obj.As)
112 instructions[s] = obj.As(i)
115 if obj.As(i) >= obj.A_ARCHSPECIFIC {
116 instructions[s] = obj.As(i) + obj.ABaseAMD64
187 // Note that there is no list of names as there is for x86.
208 instructions := make(map[string]obj.As)
210 instructions[s] = obj.As(i)
213 if obj.As(i) >= obj.A_ARCHSPECIFIC {
214 instructions[s] = obj.As(i) + obj.ABaseAR
    [all...]
  /prebuilts/go/linux-x86/src/cmd/asm/internal/arch/
arch.go 31 Instructions map[string]obj.As
110 instructions := make(map[string]obj.As)
112 instructions[s] = obj.As(i)
115 if obj.As(i) >= obj.A_ARCHSPECIFIC {
116 instructions[s] = obj.As(i) + obj.ABaseAMD64
187 // Note that there is no list of names as there is for x86.
208 instructions := make(map[string]obj.As)
210 instructions[s] = obj.As(i)
213 if obj.As(i) >= obj.A_ARCHSPECIFIC {
214 instructions[s] = obj.As(i) + obj.ABaseAR
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/msp430/
opcode.d 7 0+000 <[^>]*> 1b f3 and #1, r11 ;r3 As==01
10 0+008 <[^>]*> 3c d2 bis #8, r12 ;r2 As==11
13 0+012 <[^>]*> 0f 93 cmp #0, r15 ;r3 As==00
17 0+01a <[^>]*> 2d 63 addc #2, r13 ;r3 As==10
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/s390x/
objz.go 22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
43 // Rewrite BR/BL to symbol as TYPE_BRANCH.
44 switch p.As {
56 switch p.As {
110 switch p.As {
114 p.As = AADDC
120 p.As = AADD
133 if p.As == AEXRL {
143 if p.To.Type != obj.TYPE_REG || p.As != AMOVD {
151 q.As = AAD
    [all...]
  /prebuilts/go/linux-x86/src/cmd/internal/obj/s390x/
objz.go 22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
43 // Rewrite BR/BL to symbol as TYPE_BRANCH.
44 switch p.As {
56 switch p.As {
110 switch p.As {
114 p.As = AADDC
120 p.As = AADD
133 if p.As == AEXRL {
143 if p.To.Type != obj.TYPE_REG || p.As != AMOVD {
151 q.As = AAD
    [all...]

Completed in 2430 milliseconds

1 2 3 4 5 6 7 8 91011>>