Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 264 for word65 (0.1 sec)

  1. src/runtime/sys_linux_riscv64.s

    TEXT runtime·rtsigprocmask(SB),NOSPLIT|NOFRAME,$0-28
    	MOVW	how+0(FP), A0
    	MOV	new+8(FP), A1
    	MOV	old+16(FP), A2
    	MOVW	size+24(FP), A3
    	MOV	$SYS_rt_sigprocmask, A7
    	ECALL
    	MOV	$-4096, T0
    	BLTU	A0, T0, 2(PC)
    	WORD	$0	// crash
    	RET
    
    // func rt_sigaction(sig uintptr, new, old *sigactiont, size uintptr) int32
    TEXT runtime·rt_sigaction(SB),NOSPLIT|NOFRAME,$0-36
    	MOV	sig+0(FP), A0
    	MOV	new+8(FP), A1
    	MOV	old+16(FP), A2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    		case 2:
    			prefix = "word "
    		case 4:
    			prefix = "dword "
    		case 8:
    			prefix = "qword "
    		case 16:
    			prefix = "xmmword "
    		case 32:
    			prefix = "ymmword "
    		}
    		switch inst.Op {
    		case INVLPG:
    			prefix = "byte "
    		case STOSB, MOVSB, CMPSB, LODSB, SCASB:
    			prefix = "byte "
    		case STOSW, MOVSW, CMPSW, LODSW, SCASW:
    			prefix = "word "
    		case STOSD, MOVSD, CMPSD, LODSD, SCASD:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  3. src/cmd/link/internal/arm/asm.go

    //
    //         .align 2
    // local.dso_init:
    //         ldr r0, .Lmoduledata
    // .Lloadfrom:
    //         ldr r0, [r0]
    //         b runtime.addmoduledata@plt
    // .align 2
    // .Lmoduledata:
    //         .word local.moduledata(GOT_PREL) + (. - (.Lloadfrom + 4))
    // assembles to:
    //
    // 00000000 <local.dso_init>:
    //    0:        e59f0004        ldr     r0, [pc, #4]    ; c <local.dso_init+0xc>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  4. src/internal/abi/type.go

    // which can express repetition compactly. In either form, the
    // information is used by the runtime to initialize the heap bitmap,
    // and for large types (like 128 or more words), they are roughly the
    // same speed. GC programs are never much larger and often more
    // compact. (If large arrays are involved, they can be arbitrarily
    // more compact.)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. src/slices/slices_test.go

    	if want := []int{2, 9, 5, 1, 4, 1, 3}; !Equal(odd, want) {
    		t.Errorf("Reverse(odd) = %v, want %v", odd, want)
    	}
    
    	words := strings.Fields("one two three")
    	Reverse(words)
    	if want := strings.Fields("three two one"); !Equal(words, want) {
    		t.Errorf("Reverse(words) = %v, want %v", words, want)
    	}
    
    	singleton := []string{"one"}
    	Reverse(singleton)
    	if want := []string{"one"}; !Equal(singleton, want) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:06 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  6. pkg/ctrlz/assets/static/css/all.css

        font-size: 80%;
        font-weight: 300;
        word-break: normal
    }
    
    pre {
        margin: 1em;
        max-height: 31em;
        border: 1px solid #777;
        border-left: 5px solid #777;
        border-radius: 4px;
        box-shadow: 3px 3px 8px #777;
        font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
        text-align: left;
        white-space: pre;
        word-spacing: normal;
        word-break: normal;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  7. src/strings/strings.go

    	// Otherwise, all we can do for now is treat spaces as separators.
    	return unicode.IsSpace(r)
    }
    
    // Title returns a copy of the string s with all Unicode letters that begin words
    // mapped to their Unicode title case.
    //
    // Deprecated: The rule Title uses for word boundaries does not handle Unicode
    // punctuation properly. Use golang.org/x/text/cases instead.
    func Title(s string) string {
    	// Use a closure here to remember state.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  8. src/database/sql/convert_test.go

    		for _, tt := range tests {
    			rows.raw = rows.raw[:0]
    			test(tt.name, tt.in, tt.want)
    		}
    	})
    
    	// The numbers below are only valid for 64-bit interface word sizes,
    	// and gc. With 32-bit words there are more convT2E allocs, and
    	// with gccgo, only pointers currently go in interface data.
    	// So only care on amd64 gc for now.
    	measureAllocs := false
    	switch runtime.GOARCH {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 20:23:22 UTC 2024
    - 17K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/OrderingTest.java

          <T extends @Nullable Object> Scenario<?> mutate(Scenario<T> scenario) {
            List<Iterable<T>> words = Lists.newArrayList();
            words.add(Collections.<T>emptyList());
            for (T t : scenario.strictlyOrderedList) {
              words.add(Arrays.asList(t));
              for (T s : scenario.strictlyOrderedList) {
                words.add(Arrays.asList(t, s));
              }
            }
            return new Scenario<Iterable<T>>(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/Wasm.rules

    	(I64Store32 [3] destptr (I64Const [0])
    		(I64Store32 destptr (I64Const [0]) mem))
    
    // Strip off any fractional word zeroing.
    (Zero [s] destptr mem) && s%8 != 0 && s > 8 && s < 32 =>
    	(Zero [s-s%8] (OffPtr <destptr.Type> destptr [s%8])
    		(I64Store destptr (I64Const [0]) mem))
    
    // Zero small numbers of words directly.
    (Zero [16] destptr mem) =>
    	(I64Store [8] destptr (I64Const [0])
    		(I64Store destptr (I64Const [0]) mem))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 16.9K bytes
    - Viewed (0)
Back to top