Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 155 for buildop (0.17 sec)

  1. src/cmd/internal/obj/mips/asm0.go

    		return
    	}
    
    	c := ctxt0{ctxt: ctxt, newprog: newprog, cursym: cursym, autosize: int32(p.To.Offset + ctxt.Arch.FixedFrameSize)}
    
    	if oprange[AOR&obj.AMask] == nil {
    		c.ctxt.Diag("mips ops not initialized, call mips.buildop first")
    	}
    
    	pc := int64(0)
    	p.Pc = pc
    
    	var m int
    	var o *Optab
    	for p = p.Link; p != nil; p = p.Link {
    		p.Pc = pc
    		o = c.oplook(p)
    		m = int(o.size)
    		if m == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/loong64/asm.go

    	}
    
    	c := ctxt0{ctxt: ctxt, newprog: newprog, cursym: cursym, autosize: int32(p.To.Offset + ctxt.Arch.FixedFrameSize)}
    
    	if oprange[AOR&obj.AMask] == nil {
    		c.ctxt.Diag("loong64 ops not initialized, call loong64.buildop first")
    	}
    
    	pc := int64(0)
    	p.Pc = pc
    
    	var m int
    	var o *Optab
    	for p = p.Link; p != nil; p = p.Link {
    		p.Pc = pc
    		o = c.oplook(p)
    		m = int(o.size)
    		if m == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/riscv/obj.go

    package riscv
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"fmt"
    	"internal/abi"
    	"internal/buildcfg"
    	"log"
    	"math/bits"
    	"strings"
    )
    
    func buildop(ctxt *obj.Link) {}
    
    func jalToSym(ctxt *obj.Link, p *obj.Prog, lr int16) {
    	switch p.As {
    	case obj.ACALL, obj.AJMP, obj.ARET, obj.ADUFFZERO, obj.ADUFFCOPY:
    	default:
    		ctxt.Diag("unexpected Prog in jalToSym: %v", p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm/asm5.go

    	p = cursym.Func().Text
    	if p == nil || p.Link == nil { // handle external functions and ELF section symbols
    		return
    	}
    
    	if oprange[AAND&obj.AMask] == nil {
    		ctxt.Diag("arm ops not initialized, call arm.buildop first")
    	}
    
    	c := ctxt5{ctxt: ctxt, newprog: newprog, cursym: cursym, autosize: p.To.Offset + 4}
    	pc := int32(0)
    
    	op = p
    	p = p.Link
    	var m int
    	var o *Optab
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/BUILD

        ],
    )
    
    package_group(
        name = "friends",
        includes = [
            "//tensorflow/compiler/tf2xla:friends",
        ],
    )
    
    # defs.cc/h only contains string constants, and can be included in mobile
    # builds.
    filegroup(
        name = "mobile_srcs_no_runtime",
        srcs = [
            "defs.cc",
            "defs.h",
        ],
        visibility = [":friends"],
    )
    
    # Target that bundles up the XLA CPU and GPU JIT devices.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/BUILD

    A. Unique TensorFlower <******@****.***> 1718226859 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  7. tensorflow/BUILD

        match_all = [
            ":is_cuda_enabled",
            ":windows",
        ],
    )
    
    # Config setting to use in select()s to distinguish open source build from
    # google internal build on configurable attributes.
    #
    # For non-configurable distinction between OSS and Google builds, see
    # `if_oss()` and `if_google()` macros in tensorflow.bzl.
    config_setting(
        name = "oss",
        flag_values = {":oss_setting": "True"},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  8. src/cmd/dist/build.go

    	// in the binaries, while toolchain2 does. In non-release builds, the
    	// toolchain's build IDs feed into constructing the build IDs of built targets,
    	// so in non-release builds, everything now looks out-of-date due to
    	// toolchain2 having build IDs - that is, due to the go command seeing
    	// that there are new compilers. In release builds, the toolchain's reported
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. src/go/build/build.go

    // ran the compiler in the package directory, so any relative -I or -L
    // options would be relative to that directory. In 1.9 we changed to
    // running the compiler in the build directory, to get consistent
    // build results (issue #19964). To keep builds working, we change any
    // relative -I or -L options to be absolute.
    //
    // Using filepath.IsAbs and filepath.Join here means the results will be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsLabelTypeCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setCreatedBy_Wildcard(String createdBy) {
            setCreatedBy_Wildcard(createdBy, null);
        }
    
        public void setCreatedBy_Wildcard(String createdBy, ConditionOptionCall<WildcardQueryBuilder> opLambda) {
            WildcardQueryBuilder builder = regWildcardQ("createdBy", createdBy);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 87.8K bytes
    - Viewed (0)
Back to top