HomeSort by relevance Sort by last modified time
    Searched refs:Func (Results 201 - 225 of 911) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/go/linux-x86/test/fixedbugs/
issue17588.go 8 // because in case of Func.Nname.Type == nil, Decldepth
14 type F func(b T) // ERROR "T is not a type"
16 func T(fn F) {
17 func() {
  /prebuilts/go/linux-x86/test/
reflectmethod1.go 19 func (m M) UniqueMethodName() {
25 func main() {
26 reflect.TypeOf(v).Method(0).Func.Interface().(func(M))(v)
typeswitch.go 22 Func
38 func assert(b bool, s string) {
45 func f(i int) interface{} {
63 case Func:
69 func main() {
88 case func(i int) interface{}:
89 assert(x != nil && i == Func, "fun")
  /device/linaro/bootloader/edk2/EmbeddedPkg/Ebl/
HwDebug.c 165 Argv[3] - func
188 UINTN Func;
223 Pci->GetLocation (Pci, &Seg, &Bus, &Dev, &Func);
227 AsciiPrint ("\n%03d.%02d.%02d", Bus, Dev, Func);
259 Pci->GetLocation (Pci, &Seg, &Bus, &Dev, &Func);
260 if ((Bus == BusArg) && (Dev == DevArg) && (Func == FuncArg)) {
266 AsciiPrint ("Bus:%d Dev:%d Func:%d ", Bus, Dev, Func);
306 " [bus] [dev] [func]; Dump PCI",
  /external/llvm/tools/llvm-pdbdump/
ClassDefinitionDumper.cpp 87 if (auto Func = dyn_cast<PDBSymbolFunc>(Child.get())) {
88 if (Func->isCompilerGenerated() && opts::pretty::ExcludeCompilerGenerated)
90 if (Func->getLength() == 0 && !Func->isPureVirtual() &&
91 !Func->isIntroVirtualFunction())
94 AccessGroup.Functions.push_back(std::unique_ptr<PDBSymbolFunc>(Func));
  /prebuilts/go/darwin-x86/test/
typeswitch.go 22 Func
38 func assert(b bool, s string) {
45 func f(i int) interface{} {
63 case Func:
69 func main() {
88 case func(i int) interface{}:
89 assert(x != nil && i == Func, "fun")
  /external/swiftshader/third_party/subzero/src/
IceTargetLowering.h 166 /// void createTargetLowering(Cfg *Func);
181 Cfg *Func);
186 switch (Func->getOptLevel()) {
202 Func->setError("Target doesn't specify Om1 lowering steps.");
205 Func->setError("Target doesn't specify O0 lowering steps.");
208 Func->setError("Target doesn't specify O1 lowering steps.");
211 Func->setError("Target doesn't specify O2 lowering steps.");
281 Cfg *getFunc() const { return Func; }
318 virtual void emitJumpTable(const Cfg *Func,
393 explicit TargetLowering(Cfg *Func);
    [all...]
IceTargetLoweringX8632Traits.h 575 Cfg *Func, llvm::SmallVectorImpl<RegNumT> &Permutation,
638 if (Func->isVerbose(IceV_Random)) {
639 OstreamLocker L(Func->getContext());
640 Ostream &Str = Func->getContext()->getStrDump();
    [all...]
IceTargetLoweringX8632.cpp 21 std::unique_ptr<::Ice::TargetLowering> createTargetLowering(::Ice::Cfg *Func) {
22 return ::Ice::X8632::TargetX8632::create(Func);
197 Func, Mem->getType(), RebasePtrR, Mem->getOffset(), T, Shift,
263 auto *BeforeAdd = InstX86Label::create(Func, this);
267 auto *AfterAdd = InstX86Label::create(Func, this);
296 1 << Func->getAssembler<>()->getBundleAlignLog2Bytes();
305 RebasePtr = Func->makeVariable(IceType_i32);
316 Context.init(Func->getEntryNode());
354 1 << Func->getAssembler<>()->getBundleAlignLog2Bytes();
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
init.go 15 func renameinit() *Sym {
22 // func init() { (2)
37 func anyinit(n []*Node) bool {
77 func fninit(n []*Node) {
94 fn.Func.Nname = newname(initsym)
95 fn.Func.Nname.Name.Defn = fn
96 fn.Func.Nname.Name.Param.Ntype = nod(OTFUNC, nil, nil)
97 declare(fn.Func.Nname, PFUNC)
155 exportsym(fn.Func.Nname)
  /prebuilts/go/darwin-x86/src/go/doc/
doc.go 30 Funcs []*Func
51 Funcs []*Func // sorted list of functions returning this type
52 Methods []*Func // sorted list of methods (including embedded ones) of this type
55 // Func is the documentation for a func declaration.
56 type Func struct {
94 func New(pkg *ast.Package, importPath string, mode Mode) *Package {
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
init.go 15 func renameinit() *Sym {
22 // func init() { (2)
37 func anyinit(n []*Node) bool {
77 func fninit(n []*Node) {
94 fn.Func.Nname = newname(initsym)
95 fn.Func.Nname.Name.Defn = fn
96 fn.Func.Nname.Name.Param.Ntype = nod(OTFUNC, nil, nil)
97 declare(fn.Func.Nname, PFUNC)
155 exportsym(fn.Func.Nname)
  /prebuilts/go/linux-x86/src/go/doc/
doc.go 30 Funcs []*Func
51 Funcs []*Func // sorted list of functions returning this type
52 Methods []*Func // sorted list of methods (including embedded ones) of this type
55 // Func is the documentation for a func declaration.
56 type Func struct {
94 func New(pkg *ast.Package, importPath string, mode Mode) *Package {
  /frameworks/rs/rsov/compiler/spirit/
builder_test.cpp 98 auto Func = b.MakeFunctionDefinition(VoidTy, FunctionControl::None, FuncTy);
100 // Func->setName(funcName); // I.e., OpName %func funcName
101 m->addFunctionDefinition(Func);
104 Func->addBlock(Blk);
168 b.MakeEntryPointDefinition(ExecutionModel::GLCompute, Func, funcName)
212 auto Func = b.MakeFunctionDefinition(IntTy, FunctionControl::None, FuncTy);
214 // Func->setName(funcName); // I.e., OpName %func funcName
215 m->addFunctionDefinition(Func);
    [all...]
  /external/python/cpython2/Lib/idlelib/idle_test/
test_searchdialogbase.py 12 from idlelib.idle_test.mock_idle import Func
60 self.dialog.create_entries = Func()
61 self.dialog.create_option_buttons = Func()
62 self.dialog.create_other_buttons = Func()
63 self.dialog.create_command_buttons = Func()
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
STLExtras.h 118 template <class _Iterator, class Func>
119 inline mapped_iterator<_Iterator, Func>
120 operator+(typename mapped_iterator<_Iterator, Func>::difference_type N,
121 const mapped_iterator<_Iterator, Func>& X) {
122 return mapped_iterator<_Iterator, Func>(X.getCurrent() - N, X.getFunc());
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
value.go 57 func (v *Value) String() string {
64 func (v *Value) AuxInt8() int8 {
71 func (v *Value) AuxInt16() int16 {
78 func (v *Value) AuxInt32() int32 {
85 func (v *Value) AuxFloat() float64 {
91 func (v *Value) AuxValAndOff() ValAndOff {
99 func (v *Value) LongString() string {
106 r := v.Block.Func.RegAlloc
113 func (v *Value) auxString() string {
164 func (v *Value) AddArg(w *Value)
    [all...]
prove.go 80 func (l limit) String() string {
107 func newFactsTable() *factsTable {
118 func (ft *factsTable) get(v, w *Value, d domain) relation {
201 func (ft *factsTable) update(parent *Block, v, w *Value, d domain, r relation) {
303 if v.Block.Func.pass.debug > 2 {
304 v.Block.Func.Config.Warnl(parent.Line, "parent=%s, new limits %s %s %s", parent, v, w, lim.String())
310 func (ft *factsTable) isNonNegative(v *Value) bool {
320 func (ft *factsTable) checkpoint() {
328 func (ft *factsTable) restore() {
355 func lessByID(v, w *Value) bool
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
value.go 57 func (v *Value) String() string {
64 func (v *Value) AuxInt8() int8 {
71 func (v *Value) AuxInt16() int16 {
78 func (v *Value) AuxInt32() int32 {
85 func (v *Value) AuxFloat() float64 {
91 func (v *Value) AuxValAndOff() ValAndOff {
99 func (v *Value) LongString() string {
106 r := v.Block.Func.RegAlloc
113 func (v *Value) auxString() string {
164 func (v *Value) AddArg(w *Value)
    [all...]
prove.go 80 func (l limit) String() string {
107 func newFactsTable() *factsTable {
118 func (ft *factsTable) get(v, w *Value, d domain) relation {
201 func (ft *factsTable) update(parent *Block, v, w *Value, d domain, r relation) {
303 if v.Block.Func.pass.debug > 2 {
304 v.Block.Func.Config.Warnl(parent.Line, "parent=%s, new limits %s %s %s", parent, v, w, lim.String())
310 func (ft *factsTable) isNonNegative(v *Value) bool {
320 func (ft *factsTable) checkpoint() {
328 func (ft *factsTable) restore() {
355 func lessByID(v, w *Value) bool
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/
PciEnumeratorSupport.c 27 @param Func PCI Func NO.
39 IN UINT8 Func
46 // Create PCI address map in terms of Bus, Device and Func
48 Address = EFI_PCI_ADDRESS (Bus, Device, Func, 0);
101 UINT8 Func;
111 for (Func = 0; Func <= PCI_MAX_FUNC; Func++) {
121 (UINT8) Func
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/AcpiResetDxe/
Reset.c 58 UINT8 Func;
126 Func = (UINT8) (RShiftU64 (mAcpiDescription.RESET_REG.Address, 16) & 0x7);
128 PciWrite8 (PCI_LIB_ADDRESS (0, Dev, Func, Register), mAcpiDescription.RESET_VALUE);
  /external/clang/test/CodeGen/
2002-07-14-MiscTests3.c 28 unsigned PtrFunc(int (*Func)(int), int X) {
29 return Func(X);
75 int Func(int Param, long long Param2) {
103 int func(int i, int j) { function
107 j += func(2, i);
139 //func(argc, argc);
  /external/clang/test/SemaCXX/
explicit.cpp 224 using Func = void(*)(int);
227 operator Func();
230 explicit operator Func();
  /external/llvm/lib/Target/AArch64/
AArch64AddressTypePromotion.cpp 75 : FunctionPass(ID), Func(nullptr), ConsideredSExtType(nullptr) {
89 Function *Func;
420 for (auto &BB : *Func) {
486 Func = &F;
487 ConsideredSExtType = Type::getInt64Ty(Func->getContext());
489 DEBUG(dbgs() << "*** " << getPassName() << ": " << Func->getName() << '\n');

Completed in 696 milliseconds

1 2 3 4 5 6 7 891011>>