Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,313 for clen (0.25 sec)

  1. src/main/java/jcifs/pac/PacMac.java

            int ilen = data.length, olen = out.length;
            int msbit = ( ( ( ilen << 3 ) - 1 ) + ( ( ( ilen << 3 ) + 13 ) * ( i / ilen ) ) + ( ( ilen - ( i % ilen ) ) << 3 ) ) % ( ilen << 3 );
            int mshigh = msbit >>> 3, mslow = msbit & 7;
            int b = c + ( out[ i % olen ] & 0xff ) + ( ( ( ( ( data[ ( ( ilen - 1 ) - mshigh ) % ilen ] & 0xff ) << 8 )
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 7K bytes
    - Viewed (0)
  2. src/internal/bytealg/compare_amd64.s

    	MOVQ	AX, SI
    	MOVQ	DI, DX
    	MOVQ	CX, DI
    	JMP	cmpbody<>(SB)
    
    // input:
    //   SI = a
    //   DI = b
    //   BX = alen
    //   DX = blen
    // output:
    //   AX = output (-1/0/1)
    TEXT cmpbody<>(SB),NOSPLIT,$0-0
    	CMPQ	SI, DI
    	JEQ	allsame
    	CMPQ	BX, DX
    	MOVQ	DX, R8
    	CMOVQLT	BX, R8 // R8 = min(alen, blen) = # of bytes to compare
    	CMPQ	R8, $8
    	JB	small
    
    	CMPQ	R8, $63
    	JBE	loop
    #ifndef hasAVX2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 17:17:01 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  3. cni/test/testdata/expected/minikube_cni.conflist.clean

    John Howard <******@****.***> 1605827959 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 19 23:19:19 UTC 2020
    - 468 bytes
    - Viewed (0)
  4. src/internal/bytealg/compare_wasm.s

    	Get SP
    	I64Load a_base+0(FP)
    	I64Load a_len+8(FP)
    	I64Load b_base+16(FP)
    	I64Load b_len+24(FP)
    	Call cmpbody<>(SB)
    	I64Store ret+32(FP)
    	RET
    
    // params: a, alen, b, blen
    // ret: -1/0/1
    TEXT cmpbody<>(SB), NOSPLIT, $0-0
    	// len = min(alen, blen)
    	Get R1
    	Get R3
    	Get R1
    	Get R3
    	I64LtU
    	Select
    	Set R4
    
    	Get R0
    	I32WrapI64
    	Get R2
    	I32WrapI64
    	Get R4
    	I32WrapI64
    	Call memcmp<>(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 11 04:00:35 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  5. src/syscall/netlink_linux.go

    func ParseNetlinkMessage(b []byte) ([]NetlinkMessage, error) {
    	var msgs []NetlinkMessage
    	for len(b) >= NLMSG_HDRLEN {
    		h, dbuf, dlen, err := netlinkMessageHeaderAndData(b)
    		if err != nil {
    			return nil, err
    		}
    		m := NetlinkMessage{Header: *h, Data: dbuf[:int(h.Len)-NLMSG_HDRLEN]}
    		msgs = append(msgs, m)
    		b = b[dlen:]
    	}
    	return msgs, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. src/math/big/rat.go

    func mulDenom(z, x, y nat) nat {
    	switch {
    	case len(x) == 0 && len(y) == 0:
    		return z.setWord(1)
    	case len(x) == 0:
    		return z.set(y)
    	case len(y) == 0:
    		return z.set(x)
    	}
    	return z.mul(x, y)
    }
    
    // scaleDenom sets z to the product x*f.
    // If f == 0 (zero value of denominator), z is set to (a copy of) x.
    func (z *Int) scaleDenom(x *Int, f nat) {
    	if len(f) == 0 {
    		z.Set(x)
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  7. src/internal/bytealg/compare_s390x.s

    	MOVD	a_base+0(FP), R3
    	MOVD	a_len+8(FP), R4
    	MOVD	b_base+16(FP), R5
    	MOVD	b_len+24(FP), R6
    	LA	ret+32(FP), R7
    	BR	cmpbody<>(SB)
    
    // input:
    //   R3 = a
    //   R4 = alen
    //   R5 = b
    //   R6 = blen
    //   R7 = address of output word (stores -1/0/1 here)
    TEXT cmpbody<>(SB),NOSPLIT|NOFRAME,$0-0
    	CMPBEQ	R3, R5, cmplengths
    	MOVD	R4, R8
    	CMPBLE	R4, R6, amin
    	MOVD	R6, R8
    amin:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 08 20:52:47 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  8. src/sync/map_reference_test.go

    	clean, _ := m.clean.Load().(map[any]any)
    	actual, loaded = clean[key]
    	if loaded {
    		return actual, loaded
    	}
    
    	m.mu.Lock()
    	// Reload clean in case it changed while we were waiting on m.mu.
    	clean, _ = m.clean.Load().(map[any]any)
    	actual, loaded = clean[key]
    	if !loaded {
    		dirty := m.dirty()
    		dirty[key] = value
    		actual = value
    		m.clean.Store(dirty)
    	}
    	m.mu.Unlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 15:34:22 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/TaskContainerExtensionsTest.kt

            val tasks = mock<TaskContainer> {
                on { register("clean") } doReturn taskProvider
            }
    
            tasks {
    
                val clean by registering
    
                inOrder(tasks, taskProvider) {
                    verify(tasks).register("clean")
                    verifyNoMoreInteractions()
                }
    
                assertInferredTypeOf(
                    clean,
                    typeOf<TaskProvider<Task>>()
                )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeleteTaskIntegrationTest.groovy

            then: "clean is still marked UP-TO-DATE"
            result.groupedOutput.task(":clean").outcome == "UP-TO-DATE"
    
            when: "the kotlin script compiler is invoked due to a script change"
            buildKotlinFile << "\n"
            succeeds "clean"
            then: "clean is still marked as UP-TO-DATE"
            result.groupedOutput.task(":clean").outcome == "UP-TO-DATE"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top