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

1 2 3 4 5

  /external/llvm/lib/Target/MSP430/
MSP430ISelDAGToDAG.cpp 108 bool MatchAddress(SDValue N, MSP430ISelAddressMode &AM);
109 bool MatchWrapper(SDValue N, MSP430ISelAddressMode &AM);
110 bool MatchAddressBase(SDValue N, MSP430ISelAddressMode &AM);
140 bool MSP430DAGToDAGISel::MatchWrapper(SDValue N, MSP430ISelAddressMode &AM) {
143 if (AM.hasSymbolicDisplacement())
149 AM.GV = G->getGlobal();
150 AM.Disp += G->getOffset();
151 //AM.SymbolFlags = G->getTargetFlags();
153 AM.CP = CP->getConstVal();
154 AM.Align = CP->getAlignment()
    [all...]
  /external/llvm/lib/Target/X86/
X86InstrBuilder.h 124 const X86AddressMode &AM) {
125 assert(AM.Scale == 1 || AM.Scale == 2 || AM.Scale == 4 || AM.Scale == 8);
127 if (AM.BaseType == X86AddressMode::RegBase)
128 MIB.addReg(AM.Base.Reg);
130 assert(AM.BaseType == X86AddressMode::FrameIndexBase);
131 MIB.addFrameIndex(AM.Base.FrameIndex);
134 MIB.addImm(AM.Scale).addReg(AM.IndexReg)
    [all...]
X86ISelDAGToDAG.cpp 198 bool FoldOffsetIntoAddress(uint64_t Offset, X86ISelAddressMode &AM);
199 bool MatchLoadInAddress(LoadSDNode *N, X86ISelAddressMode &AM);
200 bool MatchWrapper(SDValue N, X86ISelAddressMode &AM);
201 bool MatchAddress(SDValue N, X86ISelAddressMode &AM);
202 bool MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
204 bool MatchAddressBase(SDValue N, X86ISelAddressMode &AM);
237 inline void getAddressOperands(X86ISelAddressMode &AM, SDValue &Base,
240 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase) ?
241 CurDAG->getTargetFrameIndex(AM.Base_FrameIndex,
243 AM.Base_Reg
    [all...]
X86FastISel.cpp 83 bool X86FastEmitLoad(EVT VT, const X86AddressMode &AM, MachineMemOperand *MMO,
86 bool X86FastEmitStore(EVT VT, const Value *Val, const X86AddressMode &AM,
89 const X86AddressMode &AM,
95 bool X86SelectAddress(const Value *V, X86AddressMode &AM);
96 bool X86SelectCallAddress(const Value *V, X86AddressMode &AM);
139 bool handleConstantAddresses(const Value *V, X86AddressMode &AM);
364 bool X86FastISel::X86FastEmitLoad(EVT VT, const X86AddressMode &AM,
415 addFullAddress(MIB, AM);
426 const X86AddressMode &AM,
479 addFullAddress(MIB, AM).addReg(ValReg, getKillRegState(ValIsKill))
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 146 // Try to fold more of the base or index of AM into AM, where IsBase
148 bool expandAddress(SystemZAddressingMode &AM, bool IsBase) const;
150 // Try to describe N in AM, returning true on success.
151 bool selectAddress(SDValue N, SystemZAddressingMode &AM) const;
153 // Extract individual target operands from matched address AM.
154 void getAddressOperands(const SystemZAddressingMode &AM, EVT VT,
156 void getAddressOperands(const SystemZAddressingMode &AM, EVT VT,
361 // Change the base or index in AM to Value, where IsBase selects
363 static void changeComponent(SystemZAddressingMode &AM, bool IsBase
    [all...]
  /external/chromium_org/v8/test/webkit/
date-parse-comments-test.js 52 testDateParse("(Nov) Dec (24) 25 (26) 1995 (1996) 1:30 AM (1:40 PM) GMT (EST)", "819855000000");
53 testDateParse("(Nov) Dec (24) 25 (26) 1995 (1996) 1:30 AM (1:40 PM)", "819855000000 + timeZoneOffset");
54 testDateParse("Dec 25 1995 1:30( )AM (PM)", "NaN");
55 testDateParse("Dec 25 1995 1:30 AM (PM)", "819855000000 + timeZoneOffset");
61 testDateParse("(Nov) Dec (24) 25 (26) 1995 (1996) 1:30 (1:40) PM (AM) GMT (PST)", "819898200000");
62 testDateParse("(Nov) Dec (24) 25 (26) 1995 (1996) 1:30 (1:40) PM (AM)", "819898200000 + timeZoneOffset");
63 testDateParse("Dec 25 1995 1:30(AM)PM", "NaN");
64 testDateParse("Dec 25 1995 1:30 (AM)PM ", "819898200000 + timeZoneOffset");
76 testDateParse("Dec 25 1995 1:30 (AM) PM (PST) UTC", "819898200000");
77 testDateParse("Dec 25 1995 1:30 PM (AM) (PST) UT", "819898200000")
    [all...]
  /external/llvm/lib/IR/
PassManager.cpp 22 PreservedAnalyses ModulePassManager::run(Module *M, ModuleAnalysisManager *AM) {
32 PreservedAnalyses PassPA = Passes[Idx]->run(M, AM);
33 if (AM)
34 AM->invalidate(M, PassPA);
84 FunctionAnalysisManager *AM) {
94 PreservedAnalyses PassPA = Passes[Idx]->run(F, AM);
95 if (AM)
96 AM->invalidate(F, PassPA);
  /external/libphonenumber/java/test/com/android/i18n/phonenumbers/
RegionCode.java 27 static final String AM = "AM";
  /external/llvm/lib/Analysis/
CGSCCPassManager.cpp 21 CGSCCAnalysisManager *AM) {
31 PreservedAnalyses PassPA = Passes[Idx]->run(C, AM);
32 if (AM)
33 AM->invalidate(C, PassPA);
  /external/llvm/unittests/IR/
PassManagerTest.cpp 35 Result run(Function *F, FunctionAnalysisManager *AM) {
65 Result run(Module *M, ModuleAnalysisManager *AM) {
101 PreservedAnalyses run(Module *M, ModuleAnalysisManager *AM) {
105 (void)AM->getResult<TestModuleAnalysis>(M);
122 PreservedAnalyses run(Function *F, FunctionAnalysisManager *AM) {
126 AM->getResult<ModuleAnalysisManagerFunctionProxy>(F).getManager();
134 AM->getCachedResult<TestFunctionAnalysis>(F))
138 TestFunctionAnalysis::Result &AR = AM->getResult<TestFunctionAnalysis>(F);
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
AmPmCirclesView.java 34 * Draw the two smaller AM and PM circles next to where the larger circle will be.
54 private static final int AM = TimePickerDialog.AM;
125 * Calculate whether the coordinates are touching the AM or PM circle.
137 return AM;
166 // Line up the vertical center of the AM/PM circles with the bottom of the main circle.
168 // Line up the horizontal edges of the AM/PM circles with the horizontal edges
182 if (mAmOrPm == AM) {
189 if (mAmOrPmPressed == AM) {
205 // Draw the AM/PM texts on top
    [all...]
RadialPickerLayout.java 44 * The primary layout to hold the circular picker, and the am/pm buttons. This view well measure
61 private static final int AM = TimePickerDialog.AM;
180 // Initialize the circle and AM/PM circles if applicable.
184 mAmPmCirclesView.initialize(context, initialHoursOfDay < 12? AM : PM);
286 return AM;
294 * Set the internal value for the hour, minute, or AM/PM.
302 if (value == AM) {
311 * Set the internal value as either AM or PM, and update the AM/PM circle displays
    [all...]
TimePickerDialog.java 67 public static final int AM = 0;
267 // Enable or disable the AM/PM view.
279 updateAmPmDisplay(mInitialHourOfDay < 12? AM : PM);
285 if (amOrPm == AM) {
288 amOrPm = AM;
359 if (amOrPm == AM) {
517 if (deleted == getAmOrPmKeyCode(AM)) {
535 (keyCode == getAmOrPmKeyCode(AM) || keyCode == getAmOrPmKeyCode(PM)))) {
572 // If we're in 24hour mode, we'll need to check if the input is full. If in AM/PM mode,
573 // we'll need to see if AM/PM have been typed
    [all...]
  /external/llvm/lib/CodeGen/
BasicTargetTransformInfo.cpp 151 TargetLoweringBase::AddrMode AM;
152 AM.BaseGV = BaseGV;
153 AM.BaseOffs = BaseOffset;
154 AM.HasBaseReg = HasBaseReg;
155 AM.Scale = Scale;
156 return getTLI()->isLegalAddressingMode(AM, Ty);
162 TargetLoweringBase::AddrMode AM;
163 AM.BaseGV = BaseGV;
164 AM.BaseOffs = BaseOffset;
165 AM.HasBaseReg = HasBaseReg
    [all...]
  /external/llvm/include/llvm/Analysis/
CGSCCPassManager.h 44 CGSCCAnalysisManager *AM = nullptr);
326 PreservedAnalyses run(Module *M, ModuleAnalysisManager *AM) {
327 assert(AM && "We need analyses to compute the call graph!");
331 AM->getResult<CGSCCAnalysisManagerModuleProxy>(M).getManager();
334 LazyCallGraph &CG = AM->getResult<LazyCallGraphAnalysis>(M);
544 PreservedAnalyses run(LazyCallGraph::SCC *C, CGSCCAnalysisManager *AM) {
546 if (AM)
548 FAM = &AM->getResult<FunctionAnalysisManagerCGSCCProxy>(C).getManager();
  /external/chromium_org/third_party/webrtc/common_audio/signal_processing/
spl_sqrt_floor_arm.S 6 @ Date: Fri, Jun 24, 2011 at 3:20 AM
  /frameworks/compile/slang/
slang_rs_reflection.h 123 static const char *AccessModifierStr(AccessModifier AM);
131 bool startClass(AccessModifier AM, bool IsStatic,
136 void startFunction(AccessModifier AM, bool IsStatic, const char *ReturnType,
140 void startFunction(AccessModifier AM, bool IsStatic, const char *ReturnType,
  /frameworks/base/core/java/android/widget/
TimePickerSpinnerDelegate.java 47 * A view for selecting the time of day, in either 24 hour or AM/PM mode.
64 private static final int AM = 0;
218 // Enable or disable the AM/PM view.
278 updateAmPmDisplay(mInitialHourOfDay < 12 ? AM : PM);
284 if (amOrPm == AM) {
287 amOrPm = AM;
308 mRadialTimePickerView.setAmOrPm(mInitialHourOfDay < 12 ? AM : PM);
325 case AM:
356 * Set whether in 24 hour or AM/PM mode.
358 * @param is24HourView True = 24 hour mode. False = AM/PM
    [all...]
RadialTimePickerView.java 78 private static final int AM = 0;
427 mPaintAmPmCircle[AM] = new Paint();
428 mPaintAmPmCircle[AM].setAntiAlias(true);
446 mAmOrPm = AM;
531 // 0 is 12 AM (midnight) and 12 is 12 PM (noon).
532 mAmOrPm = (hour == 0 || (hour % 24) < 12) ? AM : PM;
590 mAmOrPm = (mAmOrPm == AM) ? PM : AM;
626 mAmPmText[AM] = amPmStrings[0];
714 // We'll need to draw the AM/PM circles, so the main circle will need to hav
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGDumper.cpp 329 const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
330 switch (AM) {
468 const char *AM = getIndexedModeName(LD->getAddressingMode());
469 if (*AM)
470 OS << ", " << AM;
479 const char *AM = getIndexedModeName(ST->getAddressingMode());
480 if (*AM)
481 OS << ", " << AM;
  /external/llvm/lib/Target/Hexagon/
HexagonISelLowering.h 152 ISD::MemIndexedMode &AM,
162 /// by AM is legal for this target, for a load/store of the specified type.
166 bool isLegalAddressingMode(const AddrMode &AM, Type *Ty) const override;
  /external/chromium_org/v8/test/mjsunit/
date-parse.js 102 // Allow AM/PM after the time.
103 'Sat, 01-Jan-2000 08:00 AM UT',
104 'Sat, 01 Jan 2000 08:00 AM UT',
105 'Jan 01 2000 08:00 AM UT',
106 'Jan 01 08:00 AM UT 2000',
107 'Saturday, 01-Jan-00 08:00 AM UT',
108 '01 Jan 00 08:00 AM +0000',
289 'May 25 2008 1:30( )AM (PM)', //
  /external/llvm/include/llvm/IR/
PassManager.h 173 virtual PreservedAnalyses run(IRUnitT IR, AnalysisManagerT *AM) = 0;
228 PreservedAnalyses run(IRUnitT IR, AnalysisManagerT *AM) override {
229 return Pass.run(IR, AM);
254 PreservedAnalyses run(IRUnitT IR, AnalysisManagerT *AM) override {
382 run(IRUnitT IR, AnalysisManagerT *AM) = 0;
422 run(IRUnitT IR, AnalysisManagerT *AM) override {
423 return make_unique<ResultModelT>(Pass.run(IR, AM));
483 PreservedAnalyses run(Module *M, ModuleAnalysisManager *AM = nullptr);
527 PreservedAnalyses run(Function *F, FunctionAnalysisManager *AM = nullptr);
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.h 294 /// by AM is legal for this target, for a load/store of the specified type.
295 bool isLegalAddressingMode(const AddrMode &AM, Type *Ty) const override;
298 /// mode represented by AM for this target, for a load/store
300 /// If the AM is supported, the return value must be >= 0.
301 /// If the AM is not supported, it returns a negative value.
302 int getScalingFactorCost(const AddrMode &AM, Type *Ty) const override;
447 ISD::MemIndexedMode &AM, bool &IsInc,
450 ISD::MemIndexedMode &AM,
453 SDValue &Offset, ISD::MemIndexedMode &AM,
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
time_widget.js 40 if (step > 0) { // 0 or invalid values show hh:mm AM/PM
42 this.maxPos_ = 3; // Anything larger than 1 shows hh:mm:ss AM/PM
44 this.maxPos_ = 4; // Anything less than 1 shows hh:mm:ss.ms AM/PM

Completed in 829 milliseconds

1 2 3 4 5