Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for libfuzzerHookStrCmp (0.21 sec)

  1. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    func libfuzzerTraceConstCmp1(uint8, uint8, uint)
    func libfuzzerTraceConstCmp2(uint16, uint16, uint)
    func libfuzzerTraceConstCmp4(uint32, uint32, uint)
    func libfuzzerTraceConstCmp8(uint64, uint64, uint)
    func libfuzzerHookStrCmp(string, string, uint)
    func libfuzzerHookEqualFold(string, string, uint)
    
    func addCovMeta(p unsafe.Pointer, len uint32, hash [16]byte, pkpath string, pkgId int, cmode uint8, cgran uint8) uint32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/builtin.go

    	{"libfuzzerTraceConstCmp1", funcTag, 149},
    	{"libfuzzerTraceConstCmp2", funcTag, 150},
    	{"libfuzzerTraceConstCmp4", funcTag, 151},
    	{"libfuzzerTraceConstCmp8", funcTag, 152},
    	{"libfuzzerHookStrCmp", funcTag, 153},
    	{"libfuzzerHookEqualFold", funcTag, 153},
    	{"addCovMeta", funcTag, 155},
    	{"x86HasPOPCNT", varTag, 6},
    	{"x86HasSSE41", varTag, 6},
    	{"x86HasFMA", varTag, 6},
    	{"armHasVFPv4", varTag, 6},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/compare.go

    }
    
    func walkCompareString(n *ir.BinaryExpr, init *ir.Nodes) ir.Node {
    	if base.Debug.Libfuzzer != 0 {
    		if !ir.IsConst(n.X, constant.String) || !ir.IsConst(n.Y, constant.String) {
    			fn := "libfuzzerHookStrCmp"
    			n.X = cheapExpr(n.X, init)
    			n.Y = cheapExpr(n.Y, init)
    			paramType := types.Types[types.TSTRING]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:55:14 UTC 2023
    - 16.2K bytes
    - Viewed (0)
Back to top