Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for Xadd (0.13 sec)

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

    			// pass through to the external linker.
    			rr.Xadd = 0
    			if target.IsElf() {
    				rr.Xadd -= int64(siz)
    			}
    			rr.Xsym = rs
    			break
    		}
    		if rs != 0 && (ldr.SymSect(rs) != ldr.SymSect(s) || rt == objabi.R_GOTPCREL) {
    			// set up addend for eventual relocation via outer symbol.
    			rs := rs
    			rs, off := FoldSubSymbolOffset(ldr, rs)
    			rr.Xadd = r.Add() + off
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/asm7.go

    	{AADD, C_BITCON, C_RSP, C_NONE, C_RSP, C_NONE, 62, 8, 0, 0, 0},
    	{AADD, C_BITCON, C_NONE, C_NONE, C_RSP, C_NONE, 62, 8, 0, 0, 0},
    	{ACMP, C_BITCON, C_RSP, C_NONE, C_NONE, C_NONE, 62, 8, 0, 0, 0},
    	{AADD, C_ADDCON2, C_RSP, C_NONE, C_RSP, C_NONE, 48, 8, 0, NOTUSETMP, 0},
    	{AADD, C_ADDCON2, C_NONE, C_NONE, C_RSP, C_NONE, 48, 8, 0, NOTUSETMP, 0},
    	{AADD, C_MOVCON2, C_RSP, C_NONE, C_RSP, C_NONE, 13, 12, 0, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (MADD a (MOVDconst [-1]) x) => (SUB a x)
    (MADD a (MOVDconst [0]) _) => a
    (MADD a (MOVDconst [1]) x) => (ADD a x)
    (MADD a (MOVDconst [c]) x) && isPowerOfTwo64(c) => (ADDshiftLL a x [log64(c)])
    (MADD a (MOVDconst [c]) x) && isPowerOfTwo64(c-1) && c>=3 => (ADD a (ADDshiftLL <x.Type> x x [log64(c-1)]))
    (MADD a (MOVDconst [c]) x) && isPowerOfTwo64(c+1) && c>=7 => (SUB a (SUBshiftLL <x.Type> x x [log64(c+1)]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/asm9.go

    	/* move register */
    	{as: AADD, a1: C_REG, a2: C_REG, a6: C_REG, type_: 2, size: 4},
    	{as: AADD, a1: C_REG, a6: C_REG, type_: 2, size: 4},
    	{as: AADD, a1: C_S16CON, a2: C_REG, a6: C_REG, type_: 4, size: 4},
    	{as: AADD, a1: C_S16CON, a6: C_REG, type_: 4, size: 4},
    	{as: AADD, a1: C_U16CON, a2: C_REG, a6: C_REG, type_: 22, size: 8},
    	{as: AADD, a1: C_U16CON, a6: C_REG, type_: 22, size: 8},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/s390x/asmz.go

    	op_AE      uint32 = 0x7A00 // FORMAT_RX1        ADD NORMALIZED (short HFP)
    	op_AEB     uint32 = 0xED0A // FORMAT_RXE        ADD (short BFP)
    	op_AEBR    uint32 = 0xB30A // FORMAT_RRE        ADD (short BFP)
    	op_AER     uint32 = 0x3A00 // FORMAT_RR         ADD NORMALIZED (short HFP)
    	op_AFI     uint32 = 0xC209 // FORMAT_RIL1       ADD IMMEDIATE (32)
    	op_AG      uint32 = 0xE308 // FORMAT_RXY1       ADD (64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier_test.go

    	expected := dedent.Dedent(`
    		add table ip kube-proxy { comment "rules for kube-proxy" ; }
    
    		add chain ip kube-proxy mark-for-masquerade
    		add rule ip kube-proxy mark-for-masquerade mark set mark or 0x4000
    		add chain ip kube-proxy masquerading
    		add rule ip kube-proxy masquerading mark and 0x4000 == 0 return
    		add rule ip kube-proxy masquerading mark set mark xor 0x4000
    		add rule ip kube-proxy masquerading masquerade fully-random
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      return data_types;
    }
    
    // Add edges from lifted outside compilation argument nodes to `n` in Graph `g`.
    void AddEdgesFromOutsideCompilationNodes(
        const int original_arg_count, const int arg_to_input_edge_offset,
        const std::vector<DataType>& data_types,
        const std::vector<Node*>& outside_compilation_nodes, Graph* g, Node* n) {
      // Add edges from outside compilation nodes to While node.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      %5 = "tf.Case"(%3, %4, %arg1) {branches = [@sub, @add], output_shapes = [#tf_type.shape<>], device= "noodle", _cluster_launch = "not_ready", is_stateless = false} : (tensor<i32>, tensor<f32>, tensor<f32>) -> tensor<f32>
      func.return %5 : tensor<f32>
    }
    
    func.func @add(%arg0: tensor<*xf32>, %arg1: tensor<*xf32>) -> tensor<*xf32> {
      %0 = "tf.Add"(%arg0, %arg1): (tensor<*xf32>, tensor<*xf32>) -> tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/generic.rules

    // (x - t) + (t + y) == x + y
    // (x - t) + (y + t) == x + y
    (Sub(64|32|16|8) (Add(64|32|16|8) t x) (Add(64|32|16|8) t y)) => (Sub(64|32|16|8) x y)
    (Add(64|32|16|8) (Sub(64|32|16|8) x t) (Add(64|32|16|8) t y)) => (Add(64|32|16|8) x y)
    
    // ^(x-1) == ^x+1 == -x
    (Add(64|32|16|8) (Const(64|32|16|8) [1]) (Com(64|32|16|8) x)) => (Neg(64|32|16|8) x)
    (Com(64|32|16|8) (Add(64|32|16|8) (Const(64|32|16|8) [-1]) x)) => (Neg(64|32|16|8) x)
    
    // -(-x) == x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  10. cmd/site-replication.go

    	for _, sri := range sris {
    		for b := range sri.Buckets {
    			allBuckets.Add(b)
    		}
    		for u := range sri.UserInfoMap {
    			allUsers.Add(u)
    		}
    		for g := range sri.GroupDescMap {
    			allGroups.Add(g)
    		}
    		for p := range sri.Policies {
    			allPolicies.Add(p)
    		}
    		for u := range sri.UserPolicies {
    			allUserWPolicies.Add(u)
    		}
    		for g := range sri.GroupPolicies {
    			allGroupWPolicies.Add(g)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
Back to top