Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for set_type (0.14 sec)

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

    	}
    
    	for _, elfsym := range syms {
    		if elf.ST_TYPE(elfsym.Info) == elf.STT_NOTYPE || elf.ST_TYPE(elfsym.Info) == elf.STT_SECTION {
    			continue
    		}
    
    		// Symbols whose names start with "type:" are compiler generated,
    		// so make functions with that prefix internal.
    		ver := 0
    		symname := elfsym.Name // (unmangled) symbol name
    		if elf.ST_TYPE(elfsym.Info) == elf.STT_FUNC && strings.HasPrefix(elfsym.Name, "type:") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf.go

    			plt.SetType(sym.SELFSECT)
    		} else {
    			plt.SetType(sym.SELFRXSECT)
    		}
    
    		s = ldr.CreateSymForUpdate(elfRelType+".plt", 0)
    		s.SetType(sym.SELFROSECT)
    
    		s = ldr.CreateSymForUpdate(".gnu.version", 0)
    		s.SetType(sym.SELFROSECT)
    
    		s = ldr.CreateSymForUpdate(".gnu.version_r", 0)
    		s.SetType(sym.SELFROSECT)
    
    		/* define dynamic elf table */
    		dynamic := ldr.CreateSymForUpdate(".dynamic", 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier.go

    					Port:     svcInfo.NodePort(),
    					Protocol: protocol,
    					SetType:  utilipset.BitmapPort,
    				}}
    			case utilipset.ProtocolUDP:
    				nodePortSet = proxier.ipsetList[kubeNodePortSetUDP]
    				entries = []*utilipset.Entry{{
    					// No need to provide ip info
    					Port:     svcInfo.NodePort(),
    					Protocol: protocol,
    					SetType:  utilipset.BitmapPort,
    				}}
    			case utilipset.ProtocolSCTP:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

        int64_t index = entry.getFirst();
        Type new_type = entry.getSecond().first;
        int64_t updated_index = entry.getSecond().second;
        auto operand = caller->getOperand(index);
        builder.setInsertionPoint(caller);
        new_operands[index] = builder.create<TF::ReadVariableOp>(
            caller->getLoc(), ArrayRef<Type>{new_type}, ArrayRef<Value>{operand});
        caller->setOperand(index, new_operands[index]);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        new_quantized_func.setType(
            FunctionType::get(getContext(), TypeRange{ValueRange{args}},
                              new_quantized_func.getResultTypes()));
        for (auto [partitioned_call_arg, new_quantized_func_arg] :
             llvm::zip_equal(args, new_quantized_func.getArguments())) {
          new_quantized_func_arg.setType(partitioned_call_arg.getType());
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

                    dependency.setGroupId(a.getGroupId());
                    dependency.setVersion(a.getVersion());
                    dependency.setScope(a.getScope());
                    dependency.setType(a.getType());
                    dependency.setClassifier(a.getClassifier());
    
                    list.add(dependency);
                }
            }
            return Collections.unmodifiableList(list);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/dwarf.go

    	mkSecSym := func(name string) loader.Sym {
    		s := d.ldr.CreateSymForUpdate(name, 0)
    		s.SetType(sym.SDWARFSECT)
    		s.SetReachable(true)
    		return s.Sym()
    	}
    	mkAnonSym := func(kind sym.SymKind) loader.Sym {
    		s := d.ldr.MakeSymbolUpdater(d.ldr.CreateExtSym("", 0))
    		s.SetType(kind)
    		s.SetReachable(true)
    		return s.Sym()
    	}
    
    	// Create the section symbols.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

              << type_or_err.status().ToString();
          return type_or_err.status();
        }
        auto type = std::move(type_or_err).value();
        ret_types.push_back(type);
      }
      auto func_type = builder.getFunctionType(input_types, ret_types);
    
      // Construct function object
      auto func = FuncOp::create(func_loc, name, func_type, /* attrs= */ {});
      func.addEntryBlock();
      auto& body = func.getBody();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        auto x_type = mlir::dyn_cast<RankedTensorType>(op.getX().getType());
        // x input must have static shape.
        if (!x_type || !x_type.hasStaticShape()) {
          return failure();
        }
        Type int_type = x_type.getElementType();  // Could be i32 or i64.
    
        auto result_type = x_type;
        auto start = rewriter.create<ConstOp>(loc, GetScalarOfType(int_type, 0));
        Value limit = rewriter.create<ConstOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ppc64/asm.go

    			}
    		}
    		// Jump to the loaded pointer
    		stub.AddUint32(ctxt.Arch, OP_MTCTR_R12) // mtctr r12
    		stub.AddUint32(ctxt.Arch, OP_BCTR)      // bctr
    		stub.SetType(sym.STEXT)
    	}
    
    	// Update the relocation to use the call stub
    	su := ldr.MakeSymbolUpdater(s)
    	su.SetRelocSym(ri, stub.Sym())
    
    	// Rewrite the TOC restore slot (a nop) if the caller uses a TOC pointer.
    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