Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 63 for seg3 (0.05 sec)

  1. src/crypto/internal/nistec/p256_asm_s390x.s

    // Constant Selects
    #define SEL1  V13 // Overloaded with RED3
    #define SEL2  V9 // Overloaded with ADD3,SEL5
    #define SEL3  V10 // Overloaded with ADD4,SEL6
    #define SEL4  V6 // Overloaded with YDIG,CAR2,ZER
    #define SEL5  V9 // Overloaded with ADD3,SEL2
    #define SEL6  V10 // Overloaded with ADD4,SEL3
    
    /* *
     * To follow the flow of bits, for your own sanity a stiff drink, need you shall.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/asmb.go

    func sizeExtRelocs(ctxt *Link, relsize uint32) {
    	if relsize == 0 {
    		panic("sizeExtRelocs: relocation size not set")
    	}
    	var sz int64
    	for _, seg := range Segments {
    		for _, sect := range seg.Sections {
    			sect.Reloff = uint64(ctxt.Out.Offset() + sz)
    			sect.Rellen = uint64(relsize * sect.Relcount)
    			sz += int64(sect.Rellen)
    		}
    	}
    	filesz := ctxt.Out.Offset() + sz
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 09:22:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/sym/segment.go

    	Filelen  uint64 // length on disk
    	Sections []*Section
    }
    
    type Section struct {
    	Rwx     uint8
    	Extnum  int16
    	Align   int32
    	Name    string
    	Vaddr   uint64
    	Length  uint64
    	Seg     *Segment
    	Elfsect interface{} // an *ld.ElfShdr
    	Reloff  uint64
    	Rellen  uint64
    	// Relcount is the number of *host* relocations applied to this section
    	// (when external linking).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 16 05:32:52 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/pin-ops-with-side-effects.mlir

    // CHECK-NEXT:   "tfl.yield"(%[[RESULT_BODY]])
    // CHECK-NEXT: })
    // CHECK-NEXT: %[[TMP5:.*]] = tfl.add %[[TMP4]], %[[TMP2]]
    // CHECK-NEXT: %[[RESULT:.*]], %[[SEQ3:.*]] = tfl.control_node(%[[SEQ2]]) controls "tf.If"(%[[TMP5]], %[[TMP5]])
    // CHECK-NEXT: return %[[RESULT]]
    // CHECK-NEXT: }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 17 10:45:19 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/p256_asm_ppc64le.s

    // Constant Selects
    #define SEL1  V13 // Overloaded with RED3
    #define SEL2  V9 // Overloaded with ADD3,SEL5
    #define SEL3  V10 // Overloaded with ADD4,SEL6
    #define SEL4  V6 // Overloaded with YDIG,CAR1
    #define SEL5  V9 // Overloaded with ADD3,SEL2
    #define SEL6  V10 // Overloaded with ADD4,SEL3
    
    // TMP1, TMP2 used in
    // VMULT macros
    #define TMP1  V13 // Overloaded with RED3
    #define TMP2  V27
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. src/runtime/signal_darwin_amd64.go

    		// than it does for an attempt to access a valid but unmapped address.
    		// OS X 10.9.2 mishandles the malformed address case, making it look like
    		// a user-generated signal (like someone ran kill -SEGV ourpid).
    		// We pass user-generated signals to os/signal, or else ignore them.
    		// Doing that here - and returning to the faulting code - results in an
    		// infinite loop. It appears the best we can do is rewrite what the kernel
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 23:07:11 UTC 2022
    - 4K bytes
    - Viewed (0)
  7. src/cmd/link/internal/wasm/asm.go

    			offset += zeroEnd
    		}
    	}
    
    	writeUleb128(ctxt.Out, uint64(len(segments))) // number of data entries
    	for _, seg := range segments {
    		writeUleb128(ctxt.Out, 0) // memidx
    		writeI32Const(ctxt.Out, seg.offset)
    		ctxt.Out.WriteByte(0x0b) // end
    		writeUleb128(ctxt.Out, uint64(len(seg.data)))
    		ctxt.Out.Write(seg.data)
    	}
    
    	writeSecSize(ctxt, sizeOffset)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  8. pkg/volume/util/subpath/subpath_linux.go

    	currentPath := base
    
    	// Follow the segments one by one using openat() to make
    	// sure the user cannot change already existing directories into symlinks.
    	for _, seg := range segments {
    		var deviceStat unix.Stat_t
    
    		currentPath = filepath.Join(currentPath, seg)
    		if !mount.PathWithinBase(currentPath, base) {
    			return -1, fmt.Errorf("path %s is outside of allowed base %s", currentPath, base)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 14:09:11 UTC 2022
    - 21.4K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_set_test.go

    	set1 := newStatefulSet(3)
    	set2 := newStatefulSet(3)
    	set2.Name = "foo2"
    	set3 := newStatefulSet(3)
    	set3.Name = "foo3"
    	set3.Spec.Selector.MatchLabels = map[string]string{"foo3": "bar"}
    	pod := newStatefulSetPod(set1, 0)
    	om.setsIndexer.Add(set1)
    	om.setsIndexer.Add(set2)
    	om.setsIndexer.Add(set3)
    
    	// Make pod an orphan. Expect matching sets to be queued.
    	pod.OwnerReferences = nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  10. src/crypto/internal/boring/build-goboring.sh

    # against a different compiler version, link our own __umodti3 into the syso.
    # This one is specialized so it only expects divisors below 2^64,
    # which is all BoringCrypto uses. (Otherwise it will seg fault.)
    cat >umod-amd64.s <<'EOF'
    # tu_int __umodti3(tu_int x, tu_int y)
    # x is rsi:rdi, y is rcx:rdx, return result is rdx:rax.
    .globl __umodti3
    __umodti3:
    	# specialized to u128 % u64, so verify that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top