Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 290 for block64 (0.14 sec)

  1. src/runtime/mpallocbits.go

    }
    
    // pages64 returns a 64-bit bitmap representing a block of 64 pages aligned
    // to 64 pages. The returned block of pages is the one containing the i'th
    // page in this pallocBits. Each bit represents whether the page is in-use.
    func (b *pallocBits) pages64(i uint) uint64 {
    	return (*pageBits)(b).block64(i)
    }
    
    // allocPages64 allocates a 64-bit block of 64 pages aligned to 64 pages according
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. src/crypto/aes/gcm_ppc64x.s

    	// value from the input block.
    	VCIPHERLAST4_XOR_INPUT
    	// Store the results (4*16) and update BLK_OUT by 64.
    	STORE_OUTPUT_BLOCK64(BLK_OUT)
    	ADD	$-64, IN_LEN		// decrement input block length
    	CMP	IN_LEN, $0		// check for remaining length
    	BEQ	done
    block16_loop:
    	CMP	IN_LEN, $16		// More input
    	BLT	final_block		// If not, then handle partial block
    	// Single encryption, no stitching
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/block.go

    package ssa
    
    import (
    	"cmd/internal/src"
    	"fmt"
    )
    
    // Block represents a basic block in the control flow graph of a function.
    type Block struct {
    	// A unique identifier for the block. The system will attempt to allocate
    	// these IDs densely, but no guarantees.
    	ID ID
    
    	// Source position for block's control operation
    	Pos src.XPos
    
    	// The kind of block this is.
    	Kind BlockKind
    
    	// Likely direction for branches.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/nilcheck_test.go

    			Valu("sb", OpSB, c.config.Types.Uintptr, 0, nil),
    			Goto(blockn(0)),
    		),
    	)
    	for i := 0; i < depth; i++ {
    		blocs = append(blocs,
    			Bloc(blockn(i),
    				Valu(ptrn(i), OpAddr, ptrType, 0, nil, "sb"),
    				Valu(booln(i), OpIsNonNil, c.config.Types.Bool, 0, nil, ptrn(i)),
    				If(booln(i), blockn(i+1), "exit"),
    			),
    		)
    	}
    	blocs = append(blocs,
    		Bloc(blockn(depth), Goto("exit")),
    		Bloc("exit", Exit("mem")),
    	)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  5. src/internal/zstd/block.go

    // setSeqTable uses the Compression_Mode in mode to set up r.seqTables and
    // r.seqTableBits for kind. We store these in the Reader because one of
    // the modes simply reuses the value from the last block in the frame.
    func (r *Reader) setSeqTable(data block, off int, kind seqCode, mode byte) (int, error) {
    	info := &seqCodeInfo[kind]
    	switch mode {
    	case 0:
    		// Predefined_Mode
    		r.seqTables[kind] = info.predefTable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 17:57:43 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/InterruptibleTask.java

        //            (__)\       )\/\
        //                ||----w |
        //                ||     ||
        Runnable state = get();
        Blocker blocker = null;
        while (state instanceof Blocker || state == PARKED) {
          if (state instanceof Blocker) {
            blocker = (Blocker) state;
          }
          spinCount++;
          if (spinCount > MAX_BUSY_WAIT_SPINS) {
            /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 29 21:34:48 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/dom_test.go

    				If("p", blockn(i+1), blockn(i+2))))
    		case 1:
    			blocs = append(blocs, Bloc(blockn(i),
    				If("p", blockn(i+1), blockn(i-1))))
    		}
    	}
    
    	blocs = append(blocs,
    		Bloc(blockn(size), Goto("exit")),
    		Bloc("exit", Exit("mem")),
    	)
    
    	return blocs
    }
    
    // genManyPred creates an array of blocks where 1/3rd have a successor of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/BuildScriptBuilderKotlinTest.groovy

    """)
        }
    
        def "can add code blocks"() {
            given:
            def block1 = builder.block("Add some thing", "foo.bar")
            block1.propertyAssignment(null, "foo.bar", "bazar", true)
            def block2 = builder.block("Do it again", "foo.bar")
            block2.propertyAssignment(null, "foo.bar", "bazar", true)
            builder.block(null, "other")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/BuildScriptBuilderGroovyTest.groovy

    cathedral(thing(a: 12, 123, false))
    """)
        }
    
        def "can add code blocks"() {
            given:
            def block1 = builder.block("Add some thing", "foo.bar")
            block1.propertyAssignment(null, "foo.bar", "bazar", true)
            def block2 = builder.block("Do it again", "foo.bar")
            block2.propertyAssignment(null, "foo.bar", "bazar", true)
            builder.block(null, "other")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/filters/maxinflight_test.go

    	responses.Add(AllowedNonMutatingInflightRequestsNo * 2)
    
    	// Block is used to keep requests in flight for as long as we need to. All requests will
    	// be unblocked at the same time.
    	block := &sync.WaitGroup{}
    	block.Add(1)
    
    	waitForCalls := true
    	waitForCallsMutex := sync.Mutex{}
    
    	server := createMaxInflightServer(t, calls, block, &waitForCalls, &waitForCallsMutex, AllowedNonMutatingInflightRequestsNo, 1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 10.2K bytes
    - Viewed (0)
Back to top