Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 422 for strref (0.11 sec)

  1. src/internal/runtime/atomic/atomic_amd64.go

    //go:noescape
    func Cas64(ptr *uint64, old, new uint64) bool
    
    //go:noescape
    func CasRel(ptr *uint32, old, new uint32) bool
    
    //go:noescape
    func Store(ptr *uint32, val uint32)
    
    //go:noescape
    func Store8(ptr *uint8, val uint8)
    
    //go:noescape
    func Store64(ptr *uint64, val uint64)
    
    //go:noescape
    func StoreRel(ptr *uint32, val uint32)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/passbm_test.go

    				valn("store", i-1, 4)),
    			Valu(valn("store", i, 1), OpStore, types.TypeMem, 0, elemType, valn("addr", i, 1),
    				valn("v", i, 0), valn("zero", i, 1)),
    			Valu(valn("store", i, 2), OpStore, types.TypeMem, 0, elemType, valn("addr", i, 2),
    				valn("v", i, 0), valn("store", i, 1)),
    			Valu(valn("store", i, 3), OpStore, types.TypeMem, 0, elemType, valn("addr", i, 1),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. src/runtime/testdata/testprogcgo/stackswitch.c

    #define _XOPEN_SOURCE
    // Required for netbsd stack_t if _XOPEN_SOURCE is set.
    #define _XOPEN_SOURCE_EXTENDED	1
    #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
    
    #include <assert.h>
    #include <pthread.h>
    #include <stddef.h>
    #include <stdio.h>
    #include <stdlib.h>
    #include <ucontext.h>
    
    // musl libc does not provide getcontext, etc. Skip the test there.
    //
    // musl libc doesn't provide any direct detection mechanism. So assume any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 15:17:33 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. src/internal/runtime/atomic/atomic_riscv64.s

    TEXT ·Load64(SB),NOSPLIT|NOFRAME,$0-16
    	MOV	ptr+0(FP), A0
    	LRD	(A0), A0
    	MOV	A0, ret+8(FP)
    	RET
    
    // func Store(ptr *uint32, val uint32)
    TEXT ·Store(SB), NOSPLIT, $0-12
    	MOV	ptr+0(FP), A0
    	MOVW	val+8(FP), A1
    	AMOSWAPW A1, (A0), ZERO
    	RET
    
    // func Store8(ptr *uint8, val uint8)
    TEXT ·Store8(SB), NOSPLIT, $0-9
    	MOV	ptr+0(FP), A0
    	MOVBU	val+8(FP), A1
    	FENCE
    	MOVB	A1, (A0)
    	FENCE
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. src/flag/flag.go

    // The return value is the address of a bool variable that stores the value of the flag.
    func (f *FlagSet) Bool(name string, value bool, usage string) *bool {
    	p := new(bool)
    	f.BoolVar(p, name, value, usage)
    	return p
    }
    
    // Bool defines a bool flag with specified name, default value, and usage string.
    // The return value is the address of a bool variable that stores the value of the flag.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  6. tensorflow/cc/experimental/base/tests/tensor_test.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/cc/experimental/base/public/tensor.h"
    
    #include <stddef.h>
    #include <stdint.h>
    
    #include "tensorflow/c/tf_datatype.h"
    #include "tensorflow/cc/experimental/base/tests/tensor_types_test_util.h"
    #include "tensorflow/core/lib/gtl/array_slice.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:56:08 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testcarchive/testdata/main2.c

    // Test installing a signal handler before the Go code starts.
    // This is a lot like ../testcshared/main4.c.
    
    #include <setjmp.h>
    #include <signal.h>
    #include <stdarg.h>
    #include <stddef.h>
    #include <stdio.h>
    #include <stdint.h>
    #include <stdlib.h>
    #include <string.h>
    #include <sys/types.h>
    #include <unistd.h>
    #include <sched.h>
    #include <time.h>
    #include <errno.h>
    
    #include "libgo2.h"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/sys/cpu/cpu_s390x.go

    }
    
    // facility is a bit index for the named facility.
    type facility uint8
    
    const (
    	// mandatory facilities
    	zarch  facility = 1  // z architecture mode is active
    	stflef facility = 7  // store-facility-list-extended
    	ldisp  facility = 18 // long-displacement
    	eimm   facility = 21 // extended-immediate
    
    	// miscellaneous facilities
    	dfp    facility = 42 // decimal-floating-point
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 15:41:00 UTC 2020
    - 4.9K bytes
    - Viewed (0)
  9. src/encoding/json/scanner.go

    func stateTru(s *scanner, c byte) int {
    	if c == 'e' {
    		s.step = stateEndValue
    		return scanContinue
    	}
    	return s.error(c, "in literal true (expecting 'e')")
    }
    
    // stateF is the state after reading `f`.
    func stateF(s *scanner, c byte) int {
    	if c == 'a' {
    		s.step = stateFa
    		return scanContinue
    	}
    	return s.error(c, "in literal false (expecting 'a')")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/flatbuffer_to_string.cc

    ==============================================================================*/
    
    // Dumps a TFLite flatbuffer to a textual output format.
    // This tool is intended to be used to simplify unit testing/debugging.
    
    #include <stddef.h>
    #include <stdint.h>
    
    #include <fstream>
    #include <iostream>
    #include <string>
    
    #include "flatbuffers/flatbuffers.h"  // from @flatbuffers
    #include "flatbuffers/minireflect.h"  // from @flatbuffers
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 15:52:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top