Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 297 for rounds (0.12 sec)

  1. src/crypto/sha512/sha512block_amd64.s

    	COPY_YMM_AND_BSWAP(Y5, (1*32)(DI), Y9)
    	COPY_YMM_AND_BSWAP(Y6, (2*32)(DI), Y9)
    	COPY_YMM_AND_BSWAP(Y7, (3*32)(DI), Y9)
    
    	MOVQ DI, frame_INP(SP)
    
    	// schedule 64 input dwords, by doing 12 rounds of 4 each
    	MOVQ $4, frame_SRND(SP)
    
    loop1:
    	VPADDQ  (BP), Y4, Y0
    	VMOVDQU Y0, frame_YFER(SP)
    
    	MY_VPALIGNR(Y0, Y7, Y6, 8)
    
    	VPADDQ Y4, Y0, Y0
    
    	MY_VPALIGNR(Y1, Y5, Y4, 8)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27K bytes
    - Viewed (0)
  2. src/runtime/map_test.go

    				break
    			}
    		}
    	}
    }
    
    // Issue 8410
    func TestMapSparseIterOrder(t *testing.T) {
    	// Run several rounds to increase the probability
    	// of failure. One is not enough.
    NextRound:
    	for round := 0; round < 10; round++ {
    		m := make(map[int]bool)
    		// Add 1000 items, remove 980.
    		for i := 0; i < 1000; i++ {
    			m[i] = true
    		}
    		for i := 20; i < 1000; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  3. src/go/constant/value.go

    	s := strconv.Quote(x.string())
    	if utf8.RuneCountInString(s) > maxLen {
    		// The string without the enclosing quotes is greater than maxLen-2 runes
    		// long. Remove the last 3 runes (including the closing '"') by keeping
    		// only the first maxLen-3 runes; then add "...".
    		i := 0
    		for n := 0; n < maxLen-3; n++ {
    			_, size := utf8.DecodeRuneInString(s[i:])
    			i += size
    		}
    		s = s[:i] + "..."
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
  4. src/math/big/float.go

    	}
    	if x.prec == 0 {
    		return "zero precision finite number"
    	}
    	return ""
    }
    
    // round rounds z according to z.mode to z.prec bits and sets z.acc accordingly.
    // sbit must be 0 or 1 and summarizes any "sticky bit" information one might
    // have before calling round. z's mantissa must be normalized (with the msb set)
    // or empty.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  5. src/image/gif/writer_test.go

    			t.Error(tc.filename, err)
    			continue
    		}
    		m1, err := Decode(&buf)
    		if err != nil {
    			t.Error(tc.filename, err)
    			continue
    		}
    		if m0.Bounds() != m1.Bounds() {
    			t.Errorf("%s, bounds differ: %v and %v", tc.filename, m0.Bounds(), m1.Bounds())
    			continue
    		}
    		// Compare the average delta to the tolerance level.
    		avgDelta := averageDelta(m0, m1)
    		if avgDelta > tc.tolerance {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/anames.go

    	"REP",
    	"REPN",
    	"RETFL",
    	"RETFQ",
    	"RETFW",
    	"ROLB",
    	"ROLL",
    	"ROLQ",
    	"ROLW",
    	"RORB",
    	"RORL",
    	"RORQ",
    	"RORW",
    	"RORXL",
    	"RORXQ",
    	"ROUNDPD",
    	"ROUNDPS",
    	"ROUNDSD",
    	"ROUNDSS",
    	"RSM",
    	"RSQRTPS",
    	"RSQRTSS",
    	"SAHF",
    	"SALB",
    	"SALL",
    	"SALQ",
    	"SALW",
    	"SARB",
    	"SARL",
    	"SARQ",
    	"SARW",
    	"SARXL",
    	"SARXQ",
    	"SBBB",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/expr3.go

    	_ = a1
    
    	_ = a[9]
    	_ = a[10 /* ERRORx `index .* out of bounds` */ ]
    	_ = a[1 /* ERROR "overflows" */ <<100]
    	_ = a[1<< /* ERROR "constant shift overflow" */ 1000] // no out-of-bounds follow-on error
    	_ = a[10:]
    	_ = a[:10]
    	_ = a[10:10]
    	_ = a[11 /* ERRORx `index .* out of bounds` */ :]
    	_ = a[: 11 /* ERRORx `index .* out of bounds` */ ]
    	_ = a[: 1 /* ERROR "overflows" */ <<100]
    	_ = a[:10:10]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 22:41:49 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  8. src/runtime/error.go

    	boundsSliceAlen:  "slice bounds out of range [:%x]",
    	boundsSliceAcap:  "slice bounds out of range [:%x]",
    	boundsSliceB:     "slice bounds out of range [%x:]",
    	boundsSlice3Alen: "slice bounds out of range [::%x]",
    	boundsSlice3Acap: "slice bounds out of range [::%x]",
    	boundsSlice3B:    "slice bounds out of range [:%x:]",
    	boundsSlice3C:    "slice bounds out of range [%x::]",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/img/task-dag-examples.graffle

    l\qc\partightenfactor0 \f0\fs24 \cf0 assemble}Bounds{{434, 286}, {82, 35}}ClassShapedGraphicFo.2b0.0g0.0r0.0space9eaea0911d89d6.9887564182281494stro{\rtf1\ansi\ansicpg1252\cocoartf1561\cocoasubrtf400 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} {\*\expandedcolortbl;;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc\partightenfactor0 \f0\fs24 \cf0 check}Bounds{{492, 361}, {82, 35}}ClassShapedGraphicFo.2b0...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/ant-task-migration.graffle

    x6720\pardirnatural\qc\partightenfactor0 \f0\fs24 \cf0 assemble}Bounds{{383.5, 146}, {100.25, 43}}ClassShapedGraphicFo-RegularSize12ID17Sty{\rtf1\ansi\ansicpg1252\cocoartf1671 {\fonttbl\f0\fnil\fcharset0 Menlo-Regular;} {\colortbl;\red255\green255\blue255;} {\*\expandedcolortbl;;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc\partightenfactor0 \f0\fs24 \cf0 ant_build}Bounds{{162.25, 139.5}, {36.5, 56}}ClassShapedGraphicID.47126116071428...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top