Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 424 for loadOps (0.64 sec)

  1. test-site/activator

        "${app_commands[@]}" \
        "${residual_args[@]}"
        
      local exit_code=$?
      if is_cygwin; then
        stty icanon echo > /dev/null 2>&1
      fi
      exit $exit_code
    }
    
    # Loads a configuration file full of default command line options for this script.
    loadConfigFile() {
      cat "$1" | sed '/^\#/d'
    }
    
    ###  ------------------------------- ###
    ###  Start of customized settings    ###
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 9.3K bytes
    - Viewed (0)
  2. src/syscall/ztypes_linux_ppc64le.go

    	Softe     uint64
    	Trap      uint64
    	Dar       uint64
    	Dsisr     uint64
    	Result    uint64
    }
    
    type FdSet struct {
    	Bits [16]int64
    }
    
    type Sysinfo_t struct {
    	Uptime    int64
    	Loads     [3]uint64
    	Totalram  uint64
    	Freeram   uint64
    	Sharedram uint64
    	Bufferram uint64
    	Totalswap uint64
    	Freeswap  uint64
    	Procs     uint16
    	Pad       uint16
    	Pad_cgo_0 [4]byte
    	Totalhigh uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// Atomic operations used for semantically inlining sync/atomic and
    	// internal/runtime/atomic. Atomic loads return a new memory so that
    	// the loads are properly ordered with respect to other loads and
    	// stores.
    	{name: "AtomicLoad8", argLength: 2, typ: "(UInt8,Mem)"},                                    // Load from arg0.  arg1=memory.  Returns loaded value and new memory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/wasm/ssa.go

    		ssa.OpWasmI64Ctz, ssa.OpWasmI64Clz, ssa.OpWasmI64Popcnt:
    		getValue64(s, v.Args[0])
    		s.Prog(v.Op.Asm())
    
    	case ssa.OpLoadReg:
    		p := s.Prog(loadOp(v.Type))
    		ssagen.AddrAuto(&p.From, v.Args[0])
    
    	case ssa.OpCopy:
    		getValue64(s, v.Args[0])
    
    	default:
    		v.Fatalf("unexpected op: %s", v.Op)
    
    	}
    }
    
    func isCmp(v *ssa.Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/Wasm.rules

    (Com(64|32|16|8) x) => (I64Xor x (I64Const [-1]))
    
    (Not ...) => (I64Eqz ...)
    
    // Lowering pointer arithmetic
    (OffPtr ...) => (I64AddConst ...)
    
    // Lowering extension
    // It is unnecessary to extend loads
    (SignExt32to64        x:(I64Load32S _ _)) => x
    (SignExt16to(64|32)   x:(I64Load16S _ _)) => x
    (SignExt8to(64|32|16) x:(I64Load8S  _ _)) => x
    (ZeroExt32to64        x:(I64Load32U _ _)) => x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/switch.go

    	// If we did both expr[3] loads in the unsigned domain, they would be CSEd, and that
    	// would in turn defeat the combining of expr[0]...expr[3] into a single 4-byte load.
    	// See issue 48222.
    	// By using signed loads for the ordered comparison and unsigned loads for the
    	// equality comparison, they don't get CSEd and the equality comparisons will be
    	// done using wider loads.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  7. istioctl/pkg/writer/envoy/configdump/configdump.go

    }
    
    // includeConfigType is a flag to indicate whether to include the config type in the output
    var includeConfigType bool
    
    func SetPrintConfigTypeInSummary(p bool) {
    	includeConfigType = p
    }
    
    // Prime loads the config dump into the writer ready for printing
    func (c *ConfigWriter) Prime(b []byte) error {
    	w := &configdump.Wrapper{}
    	err := w.UnmarshalJSON(b)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 20:46:41 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. src/syscall/ztypes_linux_arm64.go

    type PtraceRegs struct {
    	Regs   [31]uint64
    	Sp     uint64
    	Pc     uint64
    	Pstate uint64
    }
    
    type FdSet struct {
    	Bits [16]int64
    }
    
    type Sysinfo_t struct {
    	Uptime    int64
    	Loads     [3]uint64
    	Totalram  uint64
    	Freeram   uint64
    	Sharedram uint64
    	Bufferram uint64
    	Totalswap uint64
    	Freeswap  uint64
    	Procs     uint16
    	Pad       uint16
    	Pad_cgo_0 [4]byte
    	Totalhigh uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  9. src/compress/bzip2/huffman.go

    			// Use ReadBits to retrieve a single bit
    			// from the underling io.ByteReader.
    			bit = uint16(br.ReadBits(1))
    		}
    
    		// Trick a compiler into generating conditional move instead of branch,
    		// by making both loads unconditional.
    		l, r := node.left, node.right
    
    		if bit == 1 {
    			nodeIndex = l
    		} else {
    			nodeIndex = r
    		}
    
    		if nodeIndex == invalidNodeValue {
    			// We found a leaf. Use the value of bit to decide
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:44:37 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. src/crypto/sha1/sha1block_arm.s

    //   - rounds 20-39 are type 2 and do not load data (ROUND2 macro).
    //   - rounds 40-59 are type 3 and do not load data (ROUND3 macro).
    //   - rounds 60-79 are type 4 and do not load data (ROUND4 macro).
    //
    // Each round loads or shuffles the data, then computes a per-round
    // function of b, c, d, and then mixes the result into and rotates the
    // five registers a, b, c, d, e holding the intermediate results.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top