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

1 2 3 4 5 6

  /external/swiftshader/third_party/LLVM/lib/Target/Alpha/
AlphaLLRP.cpp 1 //===-- AlphaLLRP.cpp - Alpha Load Load Replay Trap elimination pass. -- --===//
15 #define DEBUG_TYPE "alpha-nops"
16 #include "Alpha.h"
31 AlignAll("alpha-align-all", cl::Hidden,
45 return "Alpha NOP inserter";
64 case Alpha::LDQ: case Alpha::LDL:
65 case Alpha::LDWU: case Alpha::LDBU:
66 case Alpha::LDT: case Alpha::LDS
    [all...]
AlphaInstrInfo.cpp 1 //===- AlphaInstrInfo.cpp - Alpha Instruction Information -------*- C++ -*-===//
10 // This file contains the Alpha implementation of the TargetInstrInfo class.
14 #include "Alpha.h"
28 : AlphaGenInstrInfo(Alpha::ADJUSTSTACKDOWN, Alpha::ADJUSTSTACKUP),
37 case Alpha::LDL:
38 case Alpha::LDQ:
39 case Alpha::LDBU:
40 case Alpha::LDWU:
41 case Alpha::LDS
    [all...]
AlphaFrameLowering.cpp 1 //=====- AlphaFrameLowering.cpp - Alpha Frame Information ------*- C++ -*-====//
10 // This file contains the Alpha implementation of TargetFrameLowering class.
26 long y = l / Alpha::IMM_MULT;
27 if (l % Alpha::IMM_MULT > Alpha::IMM_HIGH)
34 return l - h * Alpha::IMM_MULT;
56 BuildMI(MBB, MBBI, dl, TII.get(Alpha::LDAHg), Alpha::R29)
57 .addGlobalAddress(MF.getFunction()).addReg(Alpha::R27).addImm(++curgpdist);
58 BuildMI(MBB, MBBI, dl, TII.get(Alpha::LDAg), Alpha::R29
    [all...]
AlphaRelocations.h 1 //===- AlphaRelocations.h - Alpha Code Relocations --------------*- C++ -*-===//
10 // This file defines the Alpha target-specific relocation types.
20 namespace Alpha {
AlphaRegisterInfo.cpp 1 //===- AlphaRegisterInfo.cpp - Alpha Register Information -------*- C++ -*-===//
10 // This file contains the Alpha implementation of the TargetRegisterInfo class.
15 #include "Alpha.h"
42 : AlphaGenRegisterInfo(Alpha::R26), TII(tii) {
46 long y = l / Alpha::IMM_MULT;
47 if (l % Alpha::IMM_MULT > Alpha::IMM_HIGH)
54 return l - h * Alpha::IMM_MULT;
60 Alpha::R9, Alpha::R10
    [all...]
AlphaISelDAGToDAG.cpp 1 //===-- AlphaISelDAGToDAG.cpp - Alpha pattern matching inst selector ------===//
10 // This file defines a pattern matching instruction selector for Alpha,
11 // converting from a legalized dag to a Alpha dag.
15 #include "Alpha.h"
40 /// AlphaDAGToDAGISel - Alpha specific code to select Alpha machine
148 return "Alpha DAG->DAG Pattern Instruction Selection";
221 return CurDAG->SelectNodeTo(N, Alpha::LDA, MVT::i64,
235 Chain = CurDAG->getCopyToReg(Chain, dl, Alpha::R24, N1,
237 Chain = CurDAG->getCopyToReg(Chain, dl, Alpha::R25, N2,
    [all...]
Alpha.h 1 //===-- Alpha.h - Top-level interface for Alpha representation --*- C++ -*-===//
11 // Alpha back-end.
22 namespace Alpha {
Makefile 1 ##===- lib/Target/Alpha/Makefile -------------------------*- Makefile -*-===##
12 TARGET = Alpha
AlphaBranchSelector.cpp 15 #include "Alpha.h"
30 return "Alpha Branch Selection";
51 if (MBBI->getOpcode() == Alpha::COND_BRANCH_I ||
52 MBBI->getOpcode() == Alpha::COND_BRANCH_F) {
AlphaISelLowering.cpp 1 //===-- AlphaISelLowering.cpp - Alpha DAG Lowering Implementation ---------===//
54 addRegisterClass(MVT::i64, Alpha::GPRCRegisterClass);
55 addRegisterClass(MVT::f64, Alpha::F8RCRegisterClass);
56 addRegisterClass(MVT::f32, Alpha::F4RCRegisterClass);
160 setStackPointerRegisterToSaveRestore(Alpha::R30);
179 case AlphaISD::CVTQT_: return "Alpha::CVTQT_";
180 case AlphaISD::CVTQS_: return "Alpha::CVTQS_";
181 case AlphaISD::CVTTQ_: return "Alpha::CVTTQ_";
182 case AlphaISD::GPRelHi: return "Alpha::GPRelHi";
183 case AlphaISD::GPRelLo: return "Alpha::GPRelLo"
    [all...]
  /external/swiftshader/third_party/LLVM/test/CodeGen/Alpha/
dg.exp 3 if { [llvm_supports_target Alpha] } {
  /development/vndk/tools/vtable-dumper/tests/
test1.cpp 1 class Alpha {
4 virtual ~Alpha() {};
9 class Beta : public Alpha {
27 void Alpha::getData(int *src, int *dst, int data) {}
  /external/google-tv-pairing-protocol/cpp/src/polo/pairing/
polochallengeresponse.h 27 typedef std::vector<uint8_t> Alpha, Gamma, Nonce;
40 // Computes the alpha value based on the given nonce.
41 virtual Alpha* GetAlpha(const Nonce& nonce) const;
polochallengeresponse.cc 32 Alpha* PoloChallengeResponse::GetAlpha(const Nonce& nonce) const {
83 Alpha* alpha = new Alpha(SHA256_DIGEST_LENGTH); local
84 SHA256(buffer, buffer_size, &(*alpha)[0]);
93 return alpha;
97 const Alpha* alpha = GetAlpha(nonce); local
98 if (!alpha) {
104 if (alpha->size() >= nonce.size())
    [all...]
  /hardware/interfaces/tests/pointer/1.0/
IGraph.hal 36 struct Alpha {
43 ref<Alpha> a_ptr;
52 passASimpleRef(ref<Alpha> a);
54 giveASimpleRef() generates (ref<Alpha> a);
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_program_pair.c 39 unsigned int rgb, unsigned int alpha,
48 if ((!rgb && !alpha) || file == RC_FILE_NONE)
58 if (alpha && pair->Alpha.Src[RC_PAIR_PRESUB_SRC].Used
59 && index != pair->Alpha.Src[RC_PAIR_PRESUB_SRC].Index) {
76 if (alpha) {
77 if (pair->Alpha.Src[i].Used) {
78 if (pair->Alpha.Src[i].File != file ||
79 pair->Alpha.Src[i].Index != index) {
95 || (alpha && alpha_used > 2))
    [all...]
radeon_pair_translate.c 133 unsigned int * alpha)
141 *alpha = 1;
170 pair->Alpha.Opcode = inst->Opcode;
172 pair->Alpha.Saturate = 1;
182 * pair->{RGB,ALPHA}.Src[RC_PAIR_PRESUB_SRC] */
193 unsigned int alpha = 0; local
194 src_uses(inst->SrcReg[j], &rgb, &alpha);
202 if(alpha) {
203 pair->Alpha.Src[i].File =
205 pair->Alpha.Src[i].Index
    [all...]
radeon_pair_dead_sources.c 32 inst->U.P.Alpha.Src[sub->Arg[i].Source].Used = 1;
54 inst->U.P.Alpha.Src[i].Used = 0;
57 mark_used(inst, &inst->U.P.Alpha);
60 mark_used_presub(&inst->U.P.Alpha);
radeon_pair_schedule.c 67 /** If the scheduler has paired an RGB and an Alpha instruction together,
68 * PairedInst references the alpha insturction's dependency information.
255 else if (sinst->Instruction->U.P.Alpha.Opcode == RC_OPCODE_NOP)
307 !sinst->Instruction->U.P.Alpha.OutputWriteMask) {
312 Alpha.OutputWriteMask) {
342 sinst->Instruction->U.P.Alpha.Src[src_idx].Used;
498 * but no scalar instruction (alpha).
511 assert(dst_full->Alpha.Opcode == RC_OPCODE_NOP);
522 dst_sub = &dst_full->Alpha;
597 /* This function assumes that rgb.Alpha and alpha.RGB are unused *
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/elf/
symtab.d 1 # The Alpha has its own version of .set.
3 #skip: alpha-*-* hppa*-*-*
  /external/skia/include/codec/
SkEncodedInfo.h 18 enum Alpha {
32 * This sometimes results in redundant Alpha and Color information.
70 static SkEncodedInfo Make(Color color, Alpha alpha, int bitsPerComponent) {
79 SkASSERT(kOpaque_Alpha == alpha);
82 SkASSERT(kOpaque_Alpha != alpha);
90 SkASSERT(kOpaque_Alpha == alpha);
96 SkASSERT(kOpaque_Alpha == alpha);
100 SkASSERT(kOpaque_Alpha != alpha);
105 SkASSERT(kOpaque_Alpha != alpha);
158 Alpha alpha() const { return fAlpha; } function in struct:SkEncodedInfo
    [all...]
  /external/skia/tests/
SkPEGTest.cpp 17 struct Alpha {
109 const auto match = Alpha::Match(gTests[i].fInput);
188 REPORTER_ASSERT(r, !(Choice<Digit,Alpha>::Match("")));
189 REPORTER_ASSERT(r, !(Choice<Digit,Alpha>::Match("\t")));
190 REPORTER_ASSERT(r, !(Choice<Digit,Alpha>::Match(" ")));
191 REPORTER_ASSERT(r, (Choice<Digit,Alpha>::Match("a")));
192 REPORTER_ASSERT(r, (Choice<Digit,Alpha>::Match("3")));
193 REPORTER_ASSERT(r, (Choice<Digit,Alpha>::Match("a ")));
194 REPORTER_ASSERT(r, (Choice<Digit,Alpha>::Match("3 ")));
195 REPORTER_ASSERT(r, !(Choice<Digit,Alpha>::Match(" a ")))
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
Core_MixInSoft_D32C31_SAT.c 45 MUL32x32INTO32((0x7FFFFFFF-pInstance->Alpha),pInstance->Target,TargetTimesOneMinAlpha,31); /* Q31 * Q0 in Q0 */
51 MUL32x32INTO32(pInstance->Current,pInstance->Alpha,CurrentTimesAlpha,31); /* Q0 * Q31 in Q0 */
72 MUL32x32INTO32(pInstance->Current,pInstance->Alpha,CurrentTimesAlpha,31); /* Q0 * Q31 in Q0 */
Core_MixSoft_1St_D32C31_WRA.c 45 MUL32x32INTO32((0x7FFFFFFF-pInstance->Alpha),pInstance->Target,TargetTimesOneMinAlpha,31) /* Q31 * Q31 in Q31 */
53 MUL32x32INTO32(pInstance->Current,pInstance->Alpha,CurrentTimesAlpha,31) /* Q31 * Q31 in Q31 */
70 MUL32x32INTO32(pInstance->Current,pInstance->Alpha,CurrentTimesAlpha,31) /* Q31 * Q31 in Q31 */
  /external/google-tv-pairing-protocol/cpp/tests/polo/pairing/
mocks.h 28 MOCK_CONST_METHOD1(GetAlpha, Alpha*(const Nonce& nonce));

Completed in 537 milliseconds

1 2 3 4 5 6