Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for maskstr (0.12 sec)

  1. src/internal/bytealg/bytealg.go

    // If MaxLen is not 0, make sure MaxLen >= 4.
    var MaxLen int
    
    // PrimeRK is the prime base used in Rabin-Karp algorithm.
    const PrimeRK = 16777619
    
    // HashStr returns the hash and the appropriate multiplicative
    // factor for use in Rabin-Karp algorithm.
    func HashStr[T string | []byte](sep T) (uint32, uint32) {
    	hash := uint32(0)
    	for i := 0; i < len(sep); i++ {
    		hash = hash*PrimeRK + uint32(sep[i])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 19:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/runtime/asm_386.s

    DATA masks<>+0x84(SB)/4, $0xffffffff
    DATA masks<>+0x88(SB)/4, $0x00000000
    DATA masks<>+0x8c(SB)/4, $0x00000000
    
    DATA masks<>+0x90(SB)/4, $0xffffffff
    DATA masks<>+0x94(SB)/4, $0xffffffff
    DATA masks<>+0x98(SB)/4, $0x000000ff
    DATA masks<>+0x9c(SB)/4, $0x00000000
    
    DATA masks<>+0xa0(SB)/4, $0xffffffff
    DATA masks<>+0xa4(SB)/4, $0xffffffff
    DATA masks<>+0xa8(SB)/4, $0x0000ffff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  3. src/runtime/asm_amd64.s

    DATA masks<>+0x48(SB)/8, $0x0000000000000000
    DATA masks<>+0x50(SB)/8, $0x000000ffffffffff
    DATA masks<>+0x58(SB)/8, $0x0000000000000000
    DATA masks<>+0x60(SB)/8, $0x0000ffffffffffff
    DATA masks<>+0x68(SB)/8, $0x0000000000000000
    DATA masks<>+0x70(SB)/8, $0x00ffffffffffffff
    DATA masks<>+0x78(SB)/8, $0x0000000000000000
    DATA masks<>+0x80(SB)/8, $0xffffffffffffffff
    DATA masks<>+0x88(SB)/8, $0x0000000000000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  4. src/crypto/aes/gcm_ppc64x.s

    	STXVLL	V25, BLK_OUT, R17
    #else
    	ADD	$32, R1, MASK_PTR
    	MOVD	$0, R16
    	P8_STXVB16X(V15, MASK_PTR, R0)
    	CMP	IN_LEN, $8
    	BLT	next4
    	MOVD	0(MASK_PTR), R14
    	MOVD	0(BLK_INP), R15
    	XOR	R14, R15, R14
    	MOVD	R14, 0(BLK_OUT)
    	ADD	$8, R16
    	ADD	$-8, IN_LEN
    next4:
    	CMP	IN_LEN, $4
    	BLT	next2
    	MOVWZ	(BLK_INP)(R16), R15
    	MOVWZ	(MASK_PTR)(R16), R14
    	XOR	R14, R15, R14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/PPC64latelower.rules

    // The upper bits of the smaller than register values is undefined. Take advantage of that.
    (AND <t> x:(MOVDconst [m]) n) && t.Size() <= 2 => (ANDconst [int64(int16(m))] n)
    
    // Convert simple bit masks to an equivalent rldic[lr] if possible.
    (AND x:(MOVDconst [m]) n) && isPPC64ValidShiftMask(m) => (RLDICL [encodePPC64RotateMask(0,m,64)] n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketWriter.kt

      private val sinkBuffer: Buffer = sink.buffer
      private var writerClosed = false
    
      /** Lazily initialized on first use. */
      private var messageDeflater: MessageDeflater? = null
    
      // Masks are only a concern for client writers.
      private val maskKey: ByteArray? = if (isClient) ByteArray(4) else null
      private val maskCursor: Buffer.UnsafeCursor? = if (isClient) Buffer.UnsafeCursor() else null
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. src/os/signal/signal_cgo_test.go

    	// read.
    	//
    	// These steps are complicated by the rules around foreground process
    	// groups. A process group cannot be foreground if it is "orphaned",
    	// unless it masks SIGTTOU.  i.e., to be foreground the process group
    	// must have a parent process group in the same session or mask SIGTTOU
    	// (which we do). An orphaned process group cannot receive
    	// terminal-generated SIGTSTP at all.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/authentication/v1beta1/generated.proto

    import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/authentication/v1beta1";
    
    // ExtraValue masks the value so protobuf can generate
    // +protobuf.nullable=true
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    message ExtraValue {
      // items, if empty, will result in an empty slice
    
      repeated string items = 1;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewrite.go

    // or return 0 if they cannot be combined.
    func mergePPC64SldiSrw(sld, srw int64) int64 {
    	if sld > srw || srw >= 32 {
    		return 0
    	}
    	mask_r := uint32(0xFFFFFFFF) >> uint(srw)
    	mask_l := uint32(0xFFFFFFFF) >> uint(sld)
    	mask := (mask_r & mask_l) << uint(sld)
    	return encodePPC64RotateMask((32-srw+sld)&31, int64(mask), 32)
    }
    
    // Convert a PPC64 opcode from the Op to OpCC form. This converts (op x y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/authentication/v1beta1/generated.proto

    import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/authentication/v1beta1";
    
    // ExtraValue masks the value so protobuf can generate
    // +protobuf.nullable=true
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    message ExtraValue {
      // items, if empty, will result in an empty slice
    
      repeated string items = 1;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top