HomeSort by relevance Sort by last modified time
    Searched defs:Target (Results 76 - 100 of 533) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/llvm/utils/TableGen/
CodeGenSchedule.cpp 11 // the target description.
51 const CodeGenTarget &Target;
52 InstRegexOp(const CodeGenTarget &t): Target(t) {}
71 for (const CodeGenInstruction *Inst : Target.getInstructionsByEnumValue()) {
84 Records(RK), Target(TGT) {
91 Sets.addOperator("instregex", llvm::make_unique<InstRegexOp>(Target));
213 for (const CodeGenInstruction *Inst : Target.getInstructionsByEnumValue()) {
493 /// Visit all the instruction definitions for this target to gather and
507 for (const CodeGenInstruction *Inst : Target.getInstructionsByEnumValue()) {
532 for (const CodeGenInstruction *Inst : Target.getInstructionsByEnumValue())
    [all...]
PseudoLoweringEmitter.cpp 51 CodeGenTarget Target;
62 PseudoLoweringEmitter(RecordKeeper &R) : Records(R), Target(R) {}
201 o << "bool " << Target.getName() + "AsmPrinter" << "::\n"
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_program_pair.h 75 unsigned int Target:2;
  /external/skia/gn/
gn_to_cmake.py 47 """Escapes the string 'a' for use as a CMake target name.
49 CMP0037 in CMake 3.0 restricts target names to "^[A-Za-z0-9_.:+-]+$"
96 """Given a target, sets the given property."""
97 out.write('set_target_properties("${target}" PROPERTIES ')
224 class Target(object):
233 def WriteAction(out, target, project, sources, synthetic_dependencies):
236 for output in target.properties.get('outputs', []):
242 outputs_name = '${target}__output'
254 script = target.properties['script']
255 arguments = target.properties['args'
    [all...]
  /external/skia/src/gpu/text/
GrTextUtils.h 44 class Target {
46 virtual ~Target() = default;
61 Target(int width, int height, const GrColorSpaceInfo& colorSpaceInfo)
  /external/skqp/gn/
gn_to_cmake.py 47 """Escapes the string 'a' for use as a CMake target name.
49 CMP0037 in CMake 3.0 restricts target names to "^[A-Za-z0-9_.:+-]+$"
96 """Given a target, sets the given property."""
97 out.write('set_target_properties("${target}" PROPERTIES ')
224 class Target(object):
233 def WriteAction(out, target, project, sources, synthetic_dependencies):
236 for output in target.properties.get('outputs', []):
242 outputs_name = '${target}__output'
254 script = target.properties['script']
255 arguments = target.properties['args'
    [all...]
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 27 // This just dispatches to the proper target specific routine.
56 // Mask in the target value a byte at a time (we don't have an alignment
57 // guarantee for the target address, so this is safest).
96 // Mask in the target value a byte at a time (we don't have an alignment
97 // guarantee for the target address, so this is safest).
106 // Mask the value into the target address. We know instructions are
256 // FIXME: Get the relocation addend from the target address.
387 // FIXME: Get the relocation addend from the target address.
499 uint8_t *Target = SymbolTable[RE.Target] + RE.Offset
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/PTX/
PTXISelDAGToDAG.cpp 10 // This file defines an instruction selector for the PTX target.
44 // Include the pieces auto'gened from the target description
94 SDValue Target = Node->getOperand(2); // branch target
98 assert(Target.getOpcode() == ISD::BasicBlock);
102 SDValue Ops[] = { Target, Pred, PredOp, Chain };
  /external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
PPCJITInfo.cpp 10 // This file implements the JIT interfaces for the 32-bit PowerPC target.
40 #define BUILD_B(TARGET, LINK) \
41 ((18 << 26) | (((TARGET) & 0x00FFFFFF) << 2) | ((LINK) & 1))
54 AtI[0] = BUILD_B(Offset, isCall); // b/bl target
133 // Pop 3 frames off the stack and branch to target
194 // Pop 3 frames off the stack and branch to target
281 // Pop 3 frames off the stack and branch to target
302 void *Target = JITCompilerFunction(StubCallAddr);
309 intptr_t Offset = ((intptr_t)Target - (intptr_t)OrigCallAddr) >> 2;
312 // Clear the original target out
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
InstrInfoEmitter.cpp 10 // This tablegen backend is responsible for emitting a description of the target
143 const CodeGenTarget &Target = CDP.getTargetInfo();
144 for (CodeGenTarget::inst_iterator II = Target.inst_begin(),
145 E = Target.inst_end(); II != E; ++II) {
162 // run - Emit the main instruction description records for the target...
168 EmitSourceFileHeader("Target Instruction Descriptors", OS);
175 CodeGenTarget &Target = CDP.getTargetInfo();
176 const std::string &TargetName = Target.getName();
177 Record *InstrInfo = Target.getInstructionSet();
184 for (CodeGenTarget::inst_iterator II = Target.inst_begin()
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceInstX8632.cpp 103 const Ice::X8632::TargetX8632 *Target) {
106 if (RegNum == Target->getFrameReg()) {
107 Disp += Target->getFrameFixedAllocaOffset();
108 } else if (RegNum != Target->getStackReg()) {
136 const auto *Target =
142 Disp += getRematerializableOffset(getBase(), Target);
169 CR->emitWithoutPrefix(Target, UseNonsfi ? "@GOTOFF" : "");
199 const auto *Target =
202 Disp += getRematerializableOffset(getBase(), Target);
264 const auto *Target
    [all...]
IceRegAlloc.h 45 // TODO(stichnot): Statically choose the size based on the target being
117 TargetLowering *const Target;
IceSwitchLowering.h 35 Range, /// Numerically adjacent case values with same target.
43 CaseCluster(uint64_t Value, CfgNode *Target)
44 : Kind(Range), Low(Value), High(Value), Target(Target) {}
54 return Target;
73 CfgNode *Target; /// Target for a range.
  /frameworks/av/media/libeffects/lvm/lib/Bundle/src/
LVM_Control.c 614 LVM_INT32 Target;
628 Target = LVM_MAXINT_16;
629 LVC_Mixer_SetTarget(&pInstance->VC_BalanceMix.MixerStream[0],Target);
632 Target = dB_to_Lin32((LVM_INT16)(LocalParams.VC_Balance<<4));
633 LVC_Mixer_SetTarget(&pInstance->VC_BalanceMix.MixerStream[1],Target);
642 LVM_INT32 Target;
656 Target = dB_to_Lin32((LVM_INT16)((-LocalParams.VC_Balance)<<4));
657 LVC_Mixer_SetTarget(&pInstance->VC_BalanceMix.MixerStream[0],Target);
660 Target = LVM_MAXINT_16;
661 LVC_Mixer_SetTarget(&pInstance->VC_BalanceMix.MixerStream[1],Target);
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
Mixer.h 38 LVM_FLOAT Target; /* Target value. Set by calling application. \
42 each time the target value is updated */
73 LVM_INT32 Target; /* Target value. Set by calling application. Can be changed at any time */
75 LVM_INT16 CallbackSet; /* Boolean. Should be set by calling application each time the target value is updated */
  /frameworks/compile/mclinker/include/mcld/LD/
LDFileFormat.h 34 Target,
57 /// @param [in] pBitClass The bitclass of target backend.
  /packages/apps/Car/libs/car-media-common/src/com/android/car/media/common/
PlaybackFragment.java 31 import com.bumptech.glide.request.target.Target;
141 Target.SIZE_ORIGINAL,
142 Target.SIZE_ORIGINAL,
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_target.h 97 CodeEmitter(const Target *);
124 const Target *targ;
157 class Target
160 Target(bool m, bool j, bool s) : hasJoin(m), joinAnterior(j), hasSWSched(s) { }
161 virtual ~Target() { }
163 static Target *create(uint32_t chipset);
164 static void destroy(Target *);
179 threads = info->target >= NVISA_GK104_CHIPSET ? 1024 : 512;
263 const Target::OpInfo& Target::getOpInfo(const Instruction *insn) cons
    [all...]
  /build/soong/android/
arch.go 83 target: {
192 commonTargetMap = make(map[string]Target)
266 commonTargetMap[name] = Target{Os: os, Arch: Arch{ArchType: Common}}
282 type Target struct {
287 func (target Target) String() string {
288 return target.Os.String() + "_" + target.Arch.String()
304 var moduleTargets []Target
315 multilib = String(module.base().commonProperties.Target.Android.Compile_multilib
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Scsi/ScsiBusDxe/
ScsiBus.c 795 @param Target A pointer to the Target ID of a SCSI device
801 @retval EFI_INVALID_PARAMETER The Target or Lun is NULL.
808 IN OUT UINT8 **Target,
814 if (Target == NULL || Lun == NULL) {
820 CopyMem (*Target,&ScsiIoDevice->Pun, TARGET_MAX_BYTES);
884 UINT8 Target[TARGET_MAX_BYTES];
897 CopyMem (Target,&ScsiIoDevice->Pun, TARGET_MAX_BYTES);
903 Target,
973 UINT8 Target[TARGET_MAX_BYTES];
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/IScsiDxe/
IScsiIbft.c 71 // the other for the Target section.
76 // Need expand the control section if more than 2 NIC/Target sections
244 Fill the NIC and target sections in iSCSI Boot Firmware Table.
261 EFI_ACPI_ISCSI_BOOT_FIRMWARE_TABLE_TARGET_STRUCTURE *Target;
274 // Get the offset of the first Nic and Target section.
279 Target = (EFI_ACPI_ISCSI_BOOT_FIRMWARE_TABLE_TARGET_STRUCTURE *) ((UINTN) Nic +
342 // Fill the Target section.
344 ZeroMem (Target, sizeof (EFI_ACPI_ISCSI_BOOT_FIRMWARE_TABLE_TARGET_STRUCTURE));
346 Target->Header.StructureId = EFI_ACPI_ISCSI_BOOT_FIRMWARE_TABLE_TARGET_STRUCTURE_ID;
347 Target->Header.Version = EFI_ACPI_ISCSI_BOOT_FIRMWARE_TABLE_TARGET_STRUCTURE_VERSION;
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/VirtioScsiDxe/
VirtioScsi.c 125 @param[in] Target The SCSI target controlled by the virtio-scsi host
128 @param[in] Lun The Logical Unit Number under the SCSI target.
155 IN UINT16 Target,
171 // a target / LUN was addressed that's impossible to encode for the host
173 Target > 0xFF || Lun >= 0x4000 ||
197 Target > Dev->MaxTarget || Lun > Dev->MaxLun ||
251 // target & LUN encoding: see virtio-0.9.5, Appendix I: SCSI Host Device,
255 Request->Lun[1] = (UINT8) Target;
337 // report target status in all cases
    [all...]
  /external/clang/include/clang/Lex/
LiteralSupport.h 197 const TargetInfo &Target;
214 const TargetInfo &target,
216 : SM(sm), Features(features), Target(target), Diags(diags),
ModuleMap.h 71 const TargetInfo *Target;
290 /// \param Target The target for this translation unit.
292 const LangOptions &LangOpts, const TargetInfo *Target,
299 /// \brief Set the target information.
300 void setTarget(const TargetInfo &Target);
  /external/clang/unittests/Basic/
SourceManagerTest.cpp 40 Target = TargetInfo::CreateTargetInfo(Diags, TargetOpts);
50 IntrusiveRefCntPtr<TargetInfo> Target;
82 &*Target);
87 PP.Initialize(*Target);
202 &*Target);
207 PP.Initialize(*Target);
302 &*Target);
307 PP.Initialize(*Target);

Completed in 910 milliseconds

1 2 34 5 6 7 8 91011>>