Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for regNames (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
Back to top