Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for attrType (0.11 sec)

  1. src/debug/elf/file_test.go

    						{Attr: dwarf.AttrDeclFile, Val: int64(7), Class: dwarf.ClassConstant},
    						{Attr: dwarf.AttrDeclLine, Val: int64(236), Class: dwarf.ClassConstant},
    						{Attr: dwarf.AttrType, Val: dwarf.Offset(0xb7f), Class: dwarf.ClassReference},
    						{Attr: dwarf.AttrDataMemberLoc, Val: []byte{0x23, 0x0}, Class: dwarf.ClassExprLoc},
    					},
    				},
    			},
    			{
    				entryNumber: 204,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    			// refer to it via "C.<name>", so skip these vars
    			//
    			// See issue 53000 for more context.
    			if name == "" {
    				break
    			}
    			typOff, _ := e.Val(dwarf.AttrType).(dwarf.Offset)
    			if typOff == 0 {
    				if e.Val(dwarf.AttrSpecification) != nil {
    					// Since we are reading all the DWARF,
    					// assume we will see the variable elsewhere.
    					break
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        if not attr_names:
          return str(attr_type)
        else:
          return '{}<{}>'.format(attr_type, ','.join(attr_names))
    
    
    def _get_val_from_proto(attr_type, attr_val):
      if attr_type == TFRTypes.I1:
        return 'true' if attr_val.b else 'false'
      elif attr_type == TFRTypes.I32 or attr_type == TFRTypes.I64:
        return attr_val.i
      elif attr_type == TFRTypes.F32:
        return attr_val.f
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
Back to top