Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 99 for UNDEF (0.04 sec)

  1. test/fixedbugs/bug037.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    func main() {
    	s := vlong(0);  // ERROR "undef"
    	_ = s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 28 18:13:13 UTC 2023
    - 246 bytes
    - Viewed (0)
  2. test/fixedbugs/bug091.go

    // license that can be found in the LICENSE file.
    
    package main
    
    func f1() {
    exit:
    	print("hi\n")
    	goto exit
    }
    
    func f2() {
    	const c = 1234
    }
    
    func f3() {
    	i := c // ERROR "undef"
    	_ = i
    }
    
    func main() {
    	f3()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 28 18:13:13 UTC 2023
    - 336 bytes
    - Viewed (0)
  3. src/crypto/aes/gcm_amd64.s

    	PCLMULQDQ $0x01, ACC0, T0
    	PSHUFD $78, ACC0, ACC0
    	PXOR T0, ACC0
    
    	PXOR ACC1, ACC0
    
    	PSHUFB BSWAP, ACC0
    	PXOR T2, ACC0
    	MOVOU ACC0, (tPtr)
    
    	RET
    #undef pTbl
    #undef tMsk
    #undef tPtr
    #undef plen
    #undef dlen
    
    // func gcmAesInit(productTable *[256]byte, ks []uint32)
    TEXT ·gcmAesInit(SB),NOSPLIT,$0
    #define dst DI
    #define KS SI
    #define NR DX
    
    	MOVQ productTable+0(FP), dst
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testerrors/testdata/err1.go

    package main
    
    /*
    #cgo LDFLAGS: -L/nonexist
    
    void test() {
    	xxx;		// ERROR HERE
    }
    
    // Issue 8442.  Cgo output unhelpful error messages for
    // invalid C preambles.
    void issue8442foo(UNDEF*); // ERROR HERE
    */
    import "C"
    
    func main() {
    	C.test()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 404 bytes
    - Viewed (0)
  5. src/runtime/rt0_ios_amd64.s

    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    // internal linking executable entry point.
    // ios/amd64 only supports external linking.
    TEXT _rt0_amd64_ios(SB),NOSPLIT|NOFRAME,$0
    	UNDEF
    
    // library entry point.
    TEXT _rt0_amd64_ios_lib(SB),NOSPLIT|NOFRAME,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 17:13:24 UTC 2020
    - 425 bytes
    - Viewed (0)
  6. src/runtime/rt0_ios_arm64.s

    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    // internal linking executable entry point.
    // ios/arm64 only supports external linking.
    TEXT _rt0_arm64_ios(SB),NOSPLIT|NOFRAME,$0
    	UNDEF
    
    // library entry point.
    TEXT _rt0_arm64_ios_lib(SB),NOSPLIT|NOFRAME,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 19 18:31:05 UTC 2020
    - 425 bytes
    - Viewed (0)
  7. test/fixedbugs/bug133.dir/bug2.go

    import "./bug0"
    
    type T2 struct { t bug0.T }
    
    func fn(p *T2) int {
    	// This reference should be invalid, because bug0.T.i is local
    	// to package bug0 and should not be visible in package bug1.
    	return p.t.i;	// ERROR "field|undef"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 426 bytes
    - Viewed (0)
  8. src/runtime/sys_linux_mipsx.s

    	MOVW	code+0(FP), R4
    	MOVW	$SYS_exit_group, R2
    	SYSCALL
    	UNDEF
    	RET
    
    // func exitThread(wait *atomic.Uint32)
    TEXT runtime·exitThread(SB),NOSPLIT,$0-4
    	MOVW	wait+0(FP), R1
    	// We're done using the stack.
    	MOVW	$0, R2
    	SYNC
    	MOVW	R2, (R1)
    	SYNC
    	MOVW	$0, R4	// exit code
    	MOVW	$SYS_exit, R2
    	SYSCALL
    	UNDEF
    	JMP	0(PC)
    
    TEXT runtime·open(SB),NOSPLIT,$0-16
    	MOVW	name+0(FP), R4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:57:24 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/grappler/grappler.cc

    absl::Status ValidateTPOptimizerConfigs(const TP_OptimizerConfigs& configs) {
      VALIDATE_STRUCT_SIZE(TP_OptimizerConfigs, configs,
                           TP_OPTIMIZER_CONFIGS_STRUCT_SIZE);
      return absl::OkStatus();
    }
    
    #undef VALIDATE_MEMBER
    #undef VALIDATE_STRUCT_SIZE
    }  // namespace
    
    namespace tensorflow {
    namespace grappler {
    
    Status CGraphOptimizer::Optimize(Cluster* cluster, const GrapplerItem& item,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 15K bytes
    - Viewed (0)
  10. src/runtime/cgo/libcgo.h

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include <stdint.h>
    #include <stdlib.h>
    #include <stdio.h>
    
    #undef nil
    #define nil ((void*)0)
    #define nelem(x) (sizeof(x)/sizeof((x)[0]))
    
    typedef uint32_t uint32;
    typedef uint64_t uint64;
    typedef uintptr_t uintptr;
    
    /*
     * The beginning of the per-goroutine structure,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 20:50:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top