Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 165 for asan (0.23 sec)

  1. src/cmd/cgo/internal/testsanitizers/testdata/msan.go

    Austin Clements <******@****.***> 1683216807 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 539 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    }
    
    // instrumentFields instruments a read/write operation on addr.
    // If it is instrumenting for MSAN or ASAN and t is a struct type, it instruments
    // operation for each field, instead of for the whole struct.
    func (s *state) instrumentFields(t *types.Type, addr *ssa.Value, kind instrumentKind) {
    	if !(base.Flag.MSan || base.Flag.ASan) || !t.IsStruct() {
    		s.instrument(t, addr, kind)
    		return
    	}
    	for _, f := range t.Fields() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. src/math/arith_s390x_test.go

    		t.Skipf("no vector support")
    	}
    	for i := 0; i < len(vf); i++ {
    		a := vf[i] / 10
    		if f := AsinNovec(a); !veryclose(asin[i], f) {
    			t.Errorf("Asin(%g) = %g, want %g", a, f, asin[i])
    		}
    	}
    	for i := 0; i < len(vfasinSC); i++ {
    		if f := AsinNovec(vfasinSC[i]); !alike(asinSC[i], f) {
    			t.Errorf("Asin(%g) = %g, want %g", vfasinSC[i], f, asinSC[i])
    		}
    	}
    }
    
    func TestAcoshNovec(t *testing.T) {
    	if !HasVX {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 08 19:52:30 UTC 2017
    - 10.8K bytes
    - Viewed (0)
  4. tensorflow/cc/gradients/math_grad_test.cc

            break;
          case COS:
            y = Cos(scope_, x);
            break;
          case ASIN:
            y = Asin(scope_, x);
            break;
          case ACOS:
            y = Acos(scope_, x);
            break;
          case TAN:
            y = Tan(scope_, x);
            break;
          case ATAN:
            y = Atan(scope_, x);
            break;
          case REAL:
            y = Real(scope_, x);
            break;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 36K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testsanitizers/testdata/tsan.go

    Austin Clements <******@****.***> 1683216807 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 700 bytes
    - Viewed (0)
  6. src/runtime/mheap.go

    				traceRelease(trace)
    			}
    		}
    
    		lock(&h.lock)
    		if msanenabled {
    			// Tell msan that this entire span is no longer in use.
    			base := unsafe.Pointer(s.base())
    			bytes := s.npages << _PageShift
    			msanfree(base, bytes)
    		}
    		if asanenabled {
    			// Tell asan that this entire span is no longer in use.
    			base := unsafe.Pointer(s.base())
    			bytes := s.npages << _PageShift
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  7. security/pkg/pki/util/san.go

    		} else {
    			ids = append(ids, Identity{Type: TypeDNS, Value: []byte(host)})
    		}
    	}
    
    	san, err := BuildSANExtension(ids)
    	if err != nil {
    		return nil, fmt.Errorf("SAN extension building failure (%v)", err)
    	}
    
    	return san, nil
    }
    
    // BuildSANExtension builds a `pkix.Extension` of type "Subject
    // Alternative Name" based on the given identities.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 14 06:50:22 UTC 2022
    - 6K bytes
    - Viewed (0)
  8. src/math/stubs_s390x.s

    TEXT ·asinTrampolineSetup(SB), NOSPLIT, $0
    	MOVB   ·hasVX(SB), R1
    	CMPBEQ R1, $1, vectorimpl                // vectorfacility = 1, vector supported
    	MOVD   $·asinvectorfacility+0x00(SB), R1
    	MOVD   $·asin(SB), R2
    	MOVD   R2, 0(R1)
    	BR     ·asin(SB)
    
    vectorimpl:
    	MOVD $·asinvectorfacility+0x00(SB), R1
    	MOVD $·asinAsm(SB), R2
    	MOVD R2, 0(R1)
    	BR   ·asinAsm(SB)
    
    GLOBL ·asinvectorfacility+0x00(SB), NOPTR, $8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 12.4K bytes
    - Viewed (0)
  9. src/runtime/msan0.go

    //go:build !msan
    
    // Dummy MSan support API, used when not built with -msan.
    
    package runtime
    
    import (
    	"unsafe"
    )
    
    const msanenabled = false
    
    // Because msanenabled is false, none of these functions should be called.
    
    func msanread(addr unsafe.Pointer, sz uintptr)     { throw("msan") }
    func msanwrite(addr unsafe.Pointer, sz uintptr)    { throw("msan") }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 725 bytes
    - Viewed (0)
  10. src/internal/msan/doc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package msan contains helper functions for manually instrumenting code
    // for the memory sanitizer.
    // This package exports the private msan routines in runtime unconditionally
    // but without the "msan" build tag they are no-ops.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 20:50:21 UTC 2024
    - 406 bytes
    - Viewed (0)
Back to top