Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for __data (0.19 sec)

  1. src/cmd/cgo/out.go

    		defer f.Close()
    		if *dynlinker {
    			// Emit the cgo_dynamic_linker line.
    			if sec := f.Section(".interp"); sec != nil {
    				if data, err := sec.Data(); err == nil && len(data) > 1 {
    					// skip trailing \0 in data
    					fmt.Fprintf(stdout, "//go:cgo_dynamic_linker %q\n", string(data[:len(data)-1]))
    				}
    			}
    		}
    		sym := elfImportedSymbols(f)
    		for _, s := range sym {
    			targ := s.Name
    			if s.Version != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    							if sdat, err := sect.Data(); err == nil {
    								data := sdat[val-sect.Addr:]
    								ints = make([]int64, len(data)/8)
    								for i := range ints {
    									ints[i] = int64(bo.Uint64(data[i*8:]))
    								}
    							}
    						}
    					}
    				case isDebugFloats(s.Name):
    					// Found it. Now find data section.
    					if i := int(s.Section); 0 <= i && i < len(f.Sections) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. src/reflect/type.go

    		prog = append(prog, 0)
    		*(*uint32)(unsafe.Pointer(&prog[0])) = uint32(len(prog) - 4)
    		typ.Kind_ |= abi.KindGCProg
    		typ.GCData = &prog[0]
    	} else {
    		typ.Kind_ &^= abi.KindGCProg
    		bv := new(bitVector)
    		addTypeBits(bv, 0, &typ.Type)
    		if len(bv.data) > 0 {
    			typ.GCData = &bv.data[0]
    		}
    	}
    	typ.Equal = nil
    	if comparable {
    		typ.Equal = func(p, q unsafe.Pointer) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  4. tensorflow/c/c_api_test.cc

        CompareTensors(out1, expected_out1);
      }
    
      void CompareTensors(TF_Tensor* a, TF_Tensor* b) {
        float* a_data = static_cast<float*>(TF_TensorData(a));
        float* b_data = static_cast<float*>(TF_TensorData(b));
        EXPECT_EQ(*a_data, *b_data);
      }
    
      void AddGradients(bool grad_inputs_provided, const char* prefix,
                        TF_Output* inputs, int ninputs, TF_Output* outputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/deadness_analysis_test.cc

      EXPECT_EQ(predicate_map[ControlOutputFor(id_true)], "*cond_ref:0");
    }
    
    void CreateSwitchN(const Scope& scope, Input data, Input output_index,
                       int64_t num_outs, OutputList* outputs) {
      if (!scope.ok()) return;
      auto _data = ops::AsNodeOut(scope, data);
      if (!scope.ok()) return;
      auto _output_index = ops::AsNodeOut(scope, output_index);
      if (!scope.ok()) return;
      Node* ret;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/elf.go

    	if *flagBuildid != "" {
    		shstrtabAddstring(".note.go.buildid")
    	}
    	shstrtabAddstring(".elfdata")
    	shstrtabAddstring(".rodata")
    	// See the comment about data.rel.ro.FOO section names in data.go.
    	relro_prefix := ""
    	if ctxt.UseRelro() {
    		shstrtabAddstring(".data.rel.ro")
    		relro_prefix = ".data.rel.ro"
    	}
    	shstrtabAddstring(relro_prefix + ".typelink")
    	shstrtabAddstring(relro_prefix + ".itablink")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ppc64/asm.go

    		o2 = uint32(val)
    	} else {
    		o1 = uint32(val)
    		o2 = uint32(val >> 32)
    	}
    
    	// On AIX, TOC data accesses are always made indirectly against R2 (a sequence of addis+ld+load/store). If the
    	// The target of the load is known, the sequence can be written into addis+addi+load/store. On Linux,
    	// TOC data accesses are always made directly against R2 (e.g addis+load/store).
    	if target.IsAIX() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
Back to top