Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for libfuzzerTraceConstCmp2 (0.35 sec)

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

    func libfuzzerTraceCmp2(uint16, uint16, uint)
    func libfuzzerTraceCmp4(uint32, uint32, uint)
    func libfuzzerTraceCmp8(uint64, uint64, uint)
    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)
    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

    	{"libfuzzerTraceCmp1", funcTag, 149},
    	{"libfuzzerTraceCmp2", funcTag, 150},
    	{"libfuzzerTraceCmp4", funcTag, 151},
    	{"libfuzzerTraceCmp8", funcTag, 152},
    	{"libfuzzerTraceConstCmp1", funcTag, 149},
    	{"libfuzzerTraceConstCmp2", funcTag, 150},
    	{"libfuzzerTraceConstCmp4", funcTag, 151},
    	{"libfuzzerTraceConstCmp8", funcTag, 152},
    	{"libfuzzerHookStrCmp", funcTag, 153},
    	{"libfuzzerHookEqualFold", funcTag, 153},
    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

    				if constcmp {
    					fn = "libfuzzerTraceConstCmp1"
    				}
    				paramType = types.Types[types.TUINT8]
    			case 2:
    				fn = "libfuzzerTraceCmp2"
    				if constcmp {
    					fn = "libfuzzerTraceConstCmp2"
    				}
    				paramType = types.Types[types.TUINT16]
    			case 4:
    				fn = "libfuzzerTraceCmp4"
    				if constcmp {
    					fn = "libfuzzerTraceConstCmp4"
    				}
    				paramType = types.Types[types.TUINT32]
    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