Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for typelink (0.12 sec)

  1. src/cmd/link/internal/ld/elf.go

    	}
    	shstrtabAddstring(relro_prefix + ".typelink")
    	shstrtabAddstring(relro_prefix + ".itablink")
    	shstrtabAddstring(relro_prefix + ".gosymtab")
    	shstrtabAddstring(relro_prefix + ".gopclntab")
    
    	if ctxt.IsExternal() {
    		*FlagD = true
    
    		shstrtabAddstring(elfRelType + ".text")
    		shstrtabAddstring(elfRelType + ".rodata")
    		shstrtabAddstring(elfRelType + relro_prefix + ".typelink")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loader/loader.go

    // Returns whether this is a Go type symbol.
    func (l *Loader) IsGoType(i Sym) bool {
    	return l.SymAttr(i)&goobj.SymFlagGoType != 0
    }
    
    // Returns whether this symbol should be included in typelink.
    func (l *Loader) IsTypelink(i Sym) bool {
    	return l.SymAttr(i)&goobj.SymFlagTypelink != 0
    }
    
    // Returns whether this symbol is an itab symbol.
    func (l *Loader) IsItab(i Sym) bool {
    	if l.IsExternal(i) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/parser.go

    	}
    	return x
    }
    
    // typeList parses a non-empty, comma-separated list of types,
    // optionally followed by a comma. If strict is set to false,
    // the first element may also be a (non-type) expression.
    // If there is more than one argument, the result is a *ListExpr.
    // The comma result indicates whether there was a (separating or
    // trailing) comma.
    //
    // typeList = arg { "," arg } [ "," ] .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  4. src/reflect/type.go

    			}
    			if tf.Offset != vf.Offset {
    				return false
    			}
    			if tf.Embedded() != vf.Embedded() {
    				return false
    			}
    		}
    		return true
    	}
    
    	return false
    }
    
    // typelinks is implemented in package runtime.
    // It returns a slice of the sections in each module,
    // and a slice of *rtype offsets in each module.
    //
    // The types in each module are sorted by string. That is, the first
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  5. tensorflow/c/kernels_test.cc

        return static_cast<void*>(s);
      };
    
      AttrValue v;
      v.set_type(DT_FLOAT);
      CreateAndCallKernelWithAttr(my_create_func, "TestKernelAttrType", v);
    }
    
    TEST_F(TestKernelAttr, TypeList) {
      auto my_create_func = [](TF_OpKernelConstruction* ctx) {
        struct MyCustomKernel* s = new struct MyCustomKernel;
        s->created = true;
        s->compute_called = false;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  6. src/go/printer/testdata/parser.go

    	} else {
    		p.expectSemi()
    	}
    
    	return &ast.IfStmt{pos, s, x, body, else_}
    }
    
    func (p *parser) parseTypeList() (list []ast.Expr) {
    	if p.trace {
    		defer un(trace(p, "TypeList"))
    	}
    
    	list = append(list, p.parseType())
    	for p.tok == token.COMMA {
    		p.next()
    		list = append(list, p.parseType())
    	}
    
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/mips/asm0.go

    		}
    
    	case C_LEXT:
    		if b == C_SEXT {
    			return true
    		}
    
    	case C_LAUTO:
    		if b == C_SAUTO {
    			return true
    		}
    
    	case C_REG:
    		if b == C_ZCON {
    			return r0iszero != 0 /*TypeKind(100016)*/
    		}
    
    	case C_LOREG:
    		if b == C_ZOREG || b == C_SOREG {
    			return true
    		}
    
    	case C_SOREG:
    		if b == C_ZOREG {
    			return true
    		}
    	}
    
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  8. tensorflow/c/c_api_test.cc

      TF_DataType value;
      TF_OperationGetAttrType(oper, "v", &value, s_);
      EXPECT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      EXPECT_EQ(TF_COMPLEX128, value);
    }
    
    TEST_F(CApiAttributesTest, TypeList) {
      const TF_DataType list[] = {TF_FLOAT, TF_DOUBLE, TF_HALF, TF_COMPLEX128};
      const size_t list_size = TF_ARRAYSIZE(list);
    
      auto desc = init("list(type)");
      TF_SetAttrTypeList(desc, "v", list, list_size);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
Back to top