Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for resptr (0.3 sec)

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

    	PXOR X10, X4
    	PXOR X11, X5
    
    	MOVOU X0, (16*0)(res_ptr)
    	MOVOU X1, (16*1)(res_ptr)
    	MOVOU X2, (16*2)(res_ptr)
    	MOVOU X3, (16*3)(res_ptr)
    	MOVOU X4, (16*4)(res_ptr)
    	MOVOU X5, (16*5)(res_ptr)
    
    	RET
    /* ---------------------------------------*/
    // func p256NegCond(val *p256Element, cond int)
    TEXT ·p256NegCond(SB),NOSPLIT,$0
    	MOVQ val+0(FP), res_ptr
    	MOVQ cond+8(FP), t0
    	// acc = poly
    	MOVQ $-1, acc0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/p256_asm_arm64.s

    		CSEL	EQ, acc2, t2, t2
    		CSEL	EQ, acc3, t3, t3
    
    		CMP	$16, const1
    		BNE	loop_select
    
    	STP	(x0, x1), 0*16(res_ptr)
    	STP	(x2, x3), 1*16(res_ptr)
    	STP	(y0, y1), 2*16(res_ptr)
    	STP	(y2, y3), 3*16(res_ptr)
    	STP	(t0, t1), 4*16(res_ptr)
    	STP	(t2, t3), 5*16(res_ptr)
    	RET
    /* ---------------------------------------*/
    // func p256SelectAffine(res *p256AffinePoint, table *p256AffineTable, idx int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/reset.go

    )
    
    var (
    	iptablesCleanupInstructions = dedent.Dedent(`
    		The reset process does not reset or clean up iptables rules or IPVS tables.
    		If you wish to reset iptables, you must do so manually by using the "iptables" command.
    
    		If your cluster was setup to utilize IPVS, run ipvsadm --clear (or similar)
    		to reset your system's IPVS tables.
    
    		The reset process does not clean your kubeconfig files and you must remove them manually.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 12:26:58 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  4. src/debug/buildinfo/buildinfo.go

    		} else {
    			bo = binary.LittleEndian
    		}
    		var readPtr func([]byte) uint64
    		if ptrSize == 4 {
    			readPtr = func(b []byte) uint64 { return uint64(bo.Uint32(b)) }
    		} else if ptrSize == 8 {
    			readPtr = bo.Uint64
    		} else {
    			return "", "", errNotGoExe
    		}
    		vers = readString(x, ptrSize, readPtr, readPtr(data[16:]))
    		mod = readString(x, ptrSize, readPtr, readPtr(data[16+ptrSize:]))
    	}
    	if vers == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. src/cmd/vet/vet_test.go

    		} else {
    			errmsgs, out = partitionStrings(we.prefix, out)
    		}
    		if len(errmsgs) == 0 {
    			errs = append(errs, fmt.Errorf("%s:%d: missing error %q", we.file, we.lineNum, we.reStr))
    			continue
    		}
    		matched := false
    		n := len(out)
    		for _, errmsg := range errmsgs {
    			// Assume errmsg says "file:line: foo".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. src/internal/xcoff/file.go

    		if sect.Type != STYP_TEXT && sect.Type != STYP_DATA {
    			continue
    		}
    		if sect.Relptr == 0 {
    			continue
    		}
    		c := saferio.SliceCap[Reloc](uint64(sect.Nreloc))
    		if c < 0 {
    			return nil, fmt.Errorf("too many relocs (%d) for section %d", sect.Nreloc, sectNum)
    		}
    		sect.Relocs = make([]Reloc, 0, c)
    		if _, err := sr.Seek(int64(sect.Relptr), io.SeekStart); err != nil {
    			return nil, err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/ztunnelserver.go

    	}
    	if flags&unix.MSG_CTRUNC != 0 {
    		return nil, 0, fmt.Errorf("truncated control message")
    	}
    	var resp T
    	var respPtr PT = &resp
    	err = proto.Unmarshal(buf[:n], respPtr)
    	if err != nil {
    		return nil, 0, err
    	}
    	return respPtr, oobn, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. istioctl/pkg/wait/wait.go

    	for _, response := range pilotResponses {
    		var configVersions []xds.SyncedVersions
    		err = json.Unmarshal(response, &configVersions)
    		if err != nil {
    			respStr := string(response)
    			if strings.Contains(respStr, xds.DistributionTrackingDisabledMessage) {
    				return 0, 0, 0, fmt.Errorf("%s", distributionTrackingDisabledErrorString)
    			}
    			return 0, 0, 0, err
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 17 12:24:17 UTC 2024
    - 10.1K bytes
    - Viewed (1)
  9. src/cmd/compile/internal/ssa/config.go

    	t.String = types.Types[types.TSTRING]
    	t.BytePtr = types.NewPtr(types.Types[types.TUINT8])
    	t.Int32Ptr = types.NewPtr(types.Types[types.TINT32])
    	t.UInt32Ptr = types.NewPtr(types.Types[types.TUINT32])
    	t.IntPtr = types.NewPtr(types.Types[types.TINT])
    	t.UintptrPtr = types.NewPtr(types.Types[types.TUINTPTR])
    	t.Float32Ptr = types.NewPtr(types.Types[types.TFLOAT32])
    	t.Float64Ptr = types.NewPtr(types.Types[types.TFLOAT64])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. src/net/smtp/smtp.go

    		}
    		if err == nil {
    			resp, err = a.Next(msg, code == 334)
    		}
    		if err != nil {
    			// abort the AUTH
    			c.cmd(501, "*")
    			c.Quit()
    			break
    		}
    		if resp == nil {
    			break
    		}
    		resp64 = make([]byte, encoding.EncodedLen(len(resp)))
    		encoding.Encode(resp64, resp)
    		code, msg64, err = c.cmd(0, "%s", resp64)
    	}
    	return err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top