Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for resptr (0.18 sec)

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

    #define res_ptr   R1
    #define in_ptr   R2
    #define T1L   V2
    #define T1H   V3
    
    TEXT ·p256BigToLittle(SB), NOSPLIT, $0
    	MOVD res+0(FP), res_ptr
    	MOVD in+8(FP), in_ptr
    
    	VL 0(in_ptr), T1H
    	VL 16(in_ptr), T1L
    
    	VPDI $0x4, T1L, T1L, T1L
    	VPDI $0x4, T1H, T1H, T1H
    
    	VST T1L, 0(res_ptr)
    	VST T1H, 16(res_ptr)
    	RET
    
    #undef res_ptr
    #undef in_ptr
    #undef T1L
    #undef T1H
    
    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/crypto/internal/nistec/p256_asm_ppc64le.s

    	// TT0, TT1 used for VPERM result in case
    	// the caller expects T0, T1 to be good.
    	XXPERMDI T0, T0, $2, TT0
    	XXPERMDI T1, T1, $2, TT1
    
    	STXVD2X TT0, (R0)(res_ptr)
    	STXVD2X TT1, (R16)(res_ptr)
    	RET
    
    #undef res_ptr
    #undef x_ptr
    #undef CPOOL
    #undef T0
    #undef T1
    #undef T2
    #undef TT0
    #undef TT1
    #undef ZER
    #undef SEL1
    #undef SEL2
    #undef CAR1
    #undef CAR2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (Zero [0] _ mem) => mem
    (Zero [1] destptr mem) => (MOVBstoreconst [makeValAndOff(0,0)] destptr mem)
    (Zero [2] destptr mem) => (MOVWstoreconst [makeValAndOff(0,0)] destptr mem)
    (Zero [4] destptr mem) => (MOVLstoreconst [makeValAndOff(0,0)] destptr mem)
    (Zero [8] destptr mem) => (MOVQstoreconst [makeValAndOff(0,0)] destptr mem)
    
    (Zero [3] destptr mem) =>
    	(MOVBstoreconst [makeValAndOff(0,2)] destptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    		(MOVWstorezero destptr mem))
    (Zero [7] destptr mem) =>
    	(MOVBstorezero [6] destptr
    		(MOVHstorezero [4] destptr
    			(MOVWstorezero destptr mem)))
    
    (Zero [8] {t} destptr mem) => (MOVDstorezero destptr mem)
    (Zero [12] {t} destptr mem) =>
            (MOVWstorezero [8] destptr
                    (MOVDstorezero [0] destptr mem))
    (Zero [16] {t} destptr mem) =>
           (MOVDstorezero [8] destptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  5. cmd/peer-rest-server.go

    			return nil
    		case ev := <-ch:
    			buf.Reset()
    			tmpEvt.Records[0] = ev
    			if err := enc.Encode(tmpEvt); err != nil {
    				peersLogOnceIf(ctx, err, "event: Encode failed")
    				continue
    			}
    			out <- grid.NewBytesWithCopyOf(buf.Bytes())
    		}
    	}
    }
    
    // TraceHandler sends http trace messages back to peer rest client
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (Zero [0] _ mem) => mem
    (Zero [1] destptr mem) => (MOVBstoreconst [0] destptr mem)
    (Zero [2] destptr mem) => (MOVHstoreconst [0] destptr mem)
    (Zero [4] destptr mem) => (MOVWstoreconst [0] destptr mem)
    (Zero [8] destptr mem) => (MOVDstoreconst [0] destptr mem)
    (Zero [3] destptr mem) =>
    	(MOVBstoreconst [makeValAndOff(0,2)] destptr
    		(MOVHstoreconst [0] destptr mem))
    (Zero [5] destptr mem) =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/type.go

    // This allows the backend to run concurrently.
    var NewPtrCacheEnabled = true
    
    // NewPtr returns the pointer type pointing to t.
    func NewPtr(elem *Type) *Type {
    	if elem == nil {
    		base.Fatalf("NewPtr: pointer to elem Type is nil")
    	}
    
    	if t := elem.cache.ptr; t != nil {
    		if t.Elem() != elem {
    			base.Fatalf("NewPtr: elem mismatch")
    		}
    		if elem.HasShape() != t.HasShape() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  8. src/cmd/internal/testdir/testdir_test.go

    	errors := make(map[int]map[string]bool)
    	tmpRe := regexp.MustCompile(`autotmp_\d+`)
    	for _, errStr := range splitOutput(out, false) {
    		errFile, rest, ok := strings.Cut(errStr, ":")
    		if !ok || errFile != file {
    			continue
    		}
    		lineStr, msg, ok := strings.Cut(rest, ":")
    		if !ok {
    			continue
    		}
    		line, err := strconv.Atoi(lineStr)
    		line--
    		if err != nil || line < 0 || line >= len(lines) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    				// Hit. Emit a pointer instead of the rest of
    				// the domain.
    				return append(msg, byte(ptr>>8|0xC0), byte(ptr)), nil
    			}
    
    			// Miss. Add the suffix to the compression table if the
    			// offset can be stored in the available 14 bits.
    			newPtr := len(msg) - compressionOff
    			if newPtr <= int(^uint16(0)>>2) {
    				if nameAsStr == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    The report provides both names and types.
    As a last resort, you can also check a plugin's source code, but that shouldn't be necessary in the majority of cases.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top