Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for regNames (0.17 sec)

  1. src/cmd/internal/obj/arm64/list7.go

    		} else {
    			return fmt.Sprintf("%s.UXTW", regname(r))
    		}
    	case REG_UXTX <= r && r < REG_SXTB:
    		if ext != 0 {
    			return fmt.Sprintf("%s.UXTX<<%d", regname(r), ext)
    		} else {
    			return fmt.Sprintf("%s.UXTX", regname(r))
    		}
    	case REG_SXTB <= r && r < REG_SXTH:
    		if ext != 0 {
    			return fmt.Sprintf("%s.SXTB<<%d", regname(r), ext)
    		} else {
    			return fmt.Sprintf("%s.SXTB", regname(r))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/riscv/list.go

    package riscv
    
    import (
    	"fmt"
    
    	"cmd/internal/obj"
    )
    
    func init() {
    	obj.RegisterRegister(obj.RBaseRISCV, REG_END, RegName)
    	obj.RegisterOpcode(obj.ABaseRISCV, Anames)
    	obj.RegisterOpSuffix("riscv64", opSuffixString)
    }
    
    func RegName(r int) string {
    	switch {
    	case r == 0:
    		return "NONE"
    	case r == REG_G:
    		return "g"
    	case r == REG_SP:
    		return "SP"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 959 bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/file/CopyProcessingSpec.java

         * org.gradle.api.Project#file(Object)}.
         *
         * @param destPath Path to the destination directory for a Copy
         * @return this
         */
        CopyProcessingSpec into(Object destPath);
    
        /**
         * Renames a source file. The closure will be called with a single parameter, the name of the file.
         * The closure should return a String object with a new target name. The closure may return null,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 07:53:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitSmokeMultiVersionIntegrationTest.groovy

                import junit.framework.TestCase;
    
                public class Junit3Test extends TestCase {
                    public void testRenamesItself() {
                        setName("a test that renames itself");
                        fail("epic");
                    }
                }
            """.stripIndent()
            file('src/test/java/org/gradle/Junit4Test.java') << """
                package org.gradle;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. src/crypto/internal/boring/build-goboring.sh

    awk '{print $0 " _goboringcrypto_" $0 }' syms.txt >renames.txt
    objcopy --globalize-symbol=BORINGSSL_bcm_power_on_self_test \
    	../boringssl/build/crypto/libcrypto.a libcrypto.a
    
    # Link together bcm.o and libcrypto.a into a single object.
    ld -r -nostdlib --whole-archive -o goboringcrypto.o libcrypto.a $extra
    
    echo __umodti3 _goboringcrypto___umodti3 >>renames.txt
    echo __udivti3 _goboringcrypto___udivti3 >>renames.txt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. src/cmd/internal/objfile/goobj.go

    }
    
    func (f *goobjFile) symbols() ([]Sym, error) {
    	r := f.r
    	var syms []Sym
    
    	// Name of referenced indexed symbols.
    	nrefName := r.NRefName()
    	refNames := make(map[goobj.SymRef]string, nrefName)
    	for i := 0; i < nrefName; i++ {
    		rn := r.RefName(i)
    		refNames[rn.Sym()] = rn.Name(r)
    	}
    
    	abiToVer := func(abi uint16) int {
    		var ver int
    		if abi == goobj.SymABIstatic {
    			// Static symbol
    			ver = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 15:39:57 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  7. pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis/v1beta2/api.proto

    option (gogoproto.goproto_getters_all) = true;
    option (gogoproto.marshaler_all) = true;
    option (gogoproto.sizer_all) = true;
    option (gogoproto.unmarshaler_all) = true;
    option (gogoproto.goproto_unrecognized_all) = false;
    
    // Renames a field from v1beta1 ExampleRequest.
    message ExampleRequest {
    	string request = 1;
    	string v1beta2_field = 2;
    }
    
    message ExampleResponse {
    	string error  = 1;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 17:31:18 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/asm_test.go

    		for index, reg := 0, test.regFrom; reg <= test.regTo; index, reg = index+1, reg+1 {
    			have := regIndex(int16(reg))
    			want := index
    			if have != want {
    				regName := rconv(int(reg))
    				t.Errorf("regIndex(%s):\nhave: %d\nwant: %d",
    					regName, have, want)
    			}
    		}
    	}
    }
    
    // TestPCALIGN verifies the correctness of the PCALIGN by checking if the
    // code can be aligned to the alignment value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 28 19:39:51 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/rename_entrypoint_to_main.cc

        : public PassWrapper<RenameEntrypointToMainPass, OperationPass<ModuleOp>> {
     public:
      StringRef getArgument() const final { return "rename-entrypoint-to-main"; }
      StringRef getDescription() const final {
        return "Renames the entrypoint in SavedModel to `main`";
      }
    
      void runOnOperation() override {
        auto fail = [&](Operation* op, std::string message) {
          op->emitError(message);
          signalPassFailure();
        };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. src/cmd/distpack/archive.go

    	})
    }
    
    // SetTime sets the modification time of all files in the archive to t.
    func (a *Archive) SetTime(t time.Time) {
    	for i := range a.Files {
    		a.Files[i].Time = t
    	}
    }
    
    // RenameGoMod renames the go.mod files in the archive to _go.mod,
    // for use with the module form, which cannot contain other go.mod files.
    func (a *Archive) RenameGoMod() {
    	for i, f := range a.Files {
    		if strings.HasSuffix(f.Name, "/go.mod") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 17:37:52 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top