Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 483 for dword (0.06 sec)

  1. src/regexp/syntax/doc.go

    	$              at end of text (like \z not \Z) or line (flag m=true)
    	\A             at beginning of text
    	\b             at ASCII word boundary (\w on one side and \W, \A, or \z on the other)
    	\B             not at ASCII word boundary
    	\z             at end of text
    
    Escape sequences:
    
    	\a             bell (== \007)
    	\f             form feed (== \014)
    	\t             horizontal tab (== \011)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:21:02 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. src/internal/runtime/atomic/atomic_arm.go

    	word := uint32(v) << ((uaddr & 3) * 8) // little endian
    	for {
    		old := *addr32
    		if Cas(addr32, old, old|word) {
    			return
    		}
    	}
    }
    
    //go:nosplit
    func And8(addr *uint8, v uint8) {
    	// Align down to 4 bytes and use 32-bit CAS.
    	uaddr := uintptr(unsafe.Pointer(addr))
    	addr32 := (*uint32)(unsafe.Pointer(uaddr &^ 3))
    	word := uint32(v) << ((uaddr & 3) * 8)    // little endian
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. test/fibo.go

    	short = flag.Bool("short", false, "only print first 10 digits of result")
    )
    
    // A large natural number is represented by a nat, each "digit" is
    // a big.Word; the value zero corresponds to the empty nat slice.
    type nat []big.Word
    
    const W = 1 << (5 + ^big.Word(0)>>63) // big.Word size in bits
    
    // The following methods are extracted from math/big to make this a
    // stand-alone program that can easily be run without dependencies
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 08 22:22:58 UTC 2014
    - 6.3K bytes
    - Viewed (0)
  4. src/regexp/syntax/perl_groups.go

    	`[:punct:]`:   {+1, code13},
    	`[:^punct:]`:  {-1, code13},
    	`[:space:]`:   {+1, code14},
    	`[:^space:]`:  {-1, code14},
    	`[:upper:]`:   {+1, code15},
    	`[:^upper:]`:  {-1, code15},
    	`[:word:]`:    {+1, code16},
    	`[:^word:]`:   {-1, code16},
    	`[:xdigit:]`:  {+1, code17},
    	`[:^xdigit:]`: {-1, code17},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/math/big/natconv_test.go

    // If x == 0, the result is -1.
    func log2(x Word) int {
    	return bits.Len(uint(x)) - 1
    }
    
    func itoa(x nat, base int) []byte {
    	// special cases
    	switch {
    	case base < 2:
    		panic("illegal base")
    	case len(x) == 0:
    		return []byte("0")
    	}
    
    	// allocate buffer for conversion
    	i := x.bitLen()/log2(Word(base)) + 1 // +1: round up
    	s := make([]byte, i)
    
    	// don't destroy x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 12:54:00 UTC 2019
    - 16.8K bytes
    - Viewed (0)
  6. src/main/resources/fess_label.properties

    labels.suggest_word_configuration=Suggest Word
    labels.suggest_word_title_details=Suggest Word
    labels.suggest_word_type=Word Type
    labels.suggest_word_number=Word Count
    labels.suggest_word_type_all=All
    labels.suggest_word_type_document=Document
    labels.suggest_word_type_query=Query
    labels.elevate_word_configuration=Additional Word
    labels.elevate_word_title_details=Additional Word
    labels.elevate_word_link_list=List
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/util/Trie.java

            return from(Arrays.asList(words));
        }
    
        public static Trie from(Iterable<String> words) {
            Builder builder = new Builder();
            for (String word : words) {
                builder.addWord(word);
            }
            return builder.build();
        }
    
        public static Builder builder() {
            return new Trie.Builder();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java

                if (skipDuplicateWords) {
                    final String duplicateCheckStr = text.replace(" ", "");
                    if (words.stream().map(word -> word.replace(" ", "")).anyMatch(word -> word.equals(duplicateCheckStr))) {
                        // skip duplicate word.
                        continue;
                    }
                }
    
                words.add(text);
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unsafeptr/doc.go

    // to convert integers to pointers. A conversion from uintptr to
    // unsafe.Pointer is invalid if it implies that there is a uintptr-typed
    // word in memory that holds a pointer value, because that word will be
    // invisible to stack copying and to the garbage collector.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 738 bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/chacha20/chacha_arm64.s

    	// load contants
    	// VLD4R (R10), [V0.S4, V1.S4, V2.S4, V3.S4]
    	WORD	$0x4D60E940
    
    	// load keys
    	// VLD4R 16(R4), [V4.S4, V5.S4, V6.S4, V7.S4]
    	WORD	$0x4DFFE884
    	// VLD4R 16(R4), [V8.S4, V9.S4, V10.S4, V11.S4]
    	WORD	$0x4DFFE888
    	SUB	$32, R4
    
    	// load counter + nonce
    	// VLD1R (R7), [V12.S4]
    	WORD	$0x4D40C8EC
    
    	// VLD3R (R6), [V13.S4, V14.S4, V15.S4]
    	WORD	$0x4D40E8CD
    
    	// update counter
    	VADD	V30.S4, V12.S4, V12.S4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top