Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for cflags (1.24 sec)

  1. src/cmd/cgo/gcc.go

    					f.NoEscapes[funcName] = true
    				}
    			}
    		}
    	}
    	f.Preamble = strings.Join(linesOut, "\n")
    }
    
    // addToFlag appends args to flag.
    func (p *Package) addToFlag(flag string, args []string) {
    	if flag == "CFLAGS" {
    		// We'll also need these when preprocessing for dwarf information.
    		// However, discard any -g options: we need to be able
    		// to parse the debug info, so stick to what we expect.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (SBC x (SLLconst [c] y) flags) => (SBCshiftLL x y [c] flags)
    (SBC (SLLconst [c] y) x flags) => (RSCshiftLL x y [c] flags)
    (SBC x (SRLconst [c] y) flags) => (SBCshiftRL x y [c] flags)
    (SBC (SRLconst [c] y) x flags) => (RSCshiftRL x y [c] flags)
    (SBC x (SRAconst [c] y) flags) => (SBCshiftRA x y [c] flags)
    (SBC (SRAconst [c] y) x flags) => (RSCshiftRA x y [c] flags)
    (SBC x (SLL y z) flags) => (SBCshiftLLreg x y z flags)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "ADDSconstflags", argLength: 1, reg: gp11flags, typ: "(UInt64,Flags)", asm: "ADDS", aux: "Int64"},      // arg0+auxint, set flags.
    		{name: "ADDSflags", argLength: 2, reg: gp21flags, typ: "(UInt64,Flags)", asm: "ADDS", commutative: true},      // arg0+arg1, set flags.
    		{name: "SUB", argLength: 2, reg: gp21, asm: "SUB"},                                                            // arg0 - arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFile.java

            }
        }
    
    
        SmbFileHandleImpl openUnshared ( int flags, int access, int sharing, int attrs, int options ) throws CIFSException {
            return openUnshared(getUncPath(), flags, access, sharing, attrs, options);
        }
    
    
        SmbFileHandleImpl openUnshared ( String uncPath, int flags, int access, int sharing, int attrs, int options ) throws CIFSException {
            SmbFileHandleImpl fh = null;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite.go

    	}
    }
    
    // evaluate an ARM64 op against a flags value
    // that is potentially constant; return 1 for true,
    // -1 for false, and 0 for not constant.
    func ccARM64Eval(op Op, flags *Value) int {
    	fop := flags.Op
    	if fop == OpARM64InvertFlags {
    		return -ccARM64Eval(op, flags.Args[0])
    	}
    	if fop != OpARM64FlagConstant {
    		return 0
    	}
    	fc := flagConstant(flags.AuxInt)
    	b2i := func(b bool) int {
    		if b {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/prove.go

    	d := signed
    	if ft.isNonNegative(iv.min) && ft.isNonNegative(iv.max) {
    		d |= unsigned
    	}
    
    	if iv.flags&indVarMinExc == 0 {
    		addRestrictions(b, ft, d, iv.min, iv.ind, lt|eq)
    	} else {
    		addRestrictions(b, ft, d, iv.min, iv.ind, lt)
    	}
    
    	if iv.flags&indVarMaxInc == 0 {
    		addRestrictions(b, ft, d, iv.ind, iv.max, lt)
    	} else {
    		addRestrictions(b, ft, d, iv.ind, iv.max, lt|eq)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    // If the condition does not set the flags, we need to generate a comparison.
    (CondSelect <t> x y check) && !check.Type.IsFlags() && check.Type.Size() == 1
        => (CondSelect <t> x y (MOVBQZX <typ.UInt64> check))
    (CondSelect <t> x y check) && !check.Type.IsFlags() && check.Type.Size() == 2
        => (CondSelect <t> x y (MOVWQZX <typ.UInt64> check))
    (CondSelect <t> x y check) && !check.Type.IsFlags() && check.Type.Size() == 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  8. src/cmd/cgo/out.go

    		fc = f
    	}
    	fm := creat(*objDir + "_cgo_main.c")
    
    	var gccgoInit strings.Builder
    
    	if !*gccgo {
    		for _, arg := range p.LdFlags {
    			fmt.Fprintf(fgo2, "//go:cgo_ldflag %q\n", arg)
    		}
    	} else {
    		fflg := creat(*objDir + "_cgo_flags")
    		for _, arg := range p.LdFlags {
    			fmt.Fprintf(fflg, "_CGO_LDFLAGS=%s\n", arg)
    		}
    		fflg.Close()
    	}
    
    	// Write C main file for using gcc to resolve imports.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ImmutableSortedMap.java

      }
    
      /**
       * This method returns a {@code ImmutableSortedMap}, consisting of the entries whose keys ranges
       * from {@code fromKey} to {@code toKey}, inclusive or exclusive as indicated by the boolean
       * flags.
       *
       * <p>The {@link SortedMap#subMap} documentation states that a submap of a submap throws an {@link
       * IllegalArgumentException} if passed a {@code fromKey} less than an earlier {@code fromKey}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

      }
    
      /**
       * This method returns a {@code ImmutableSortedMap}, consisting of the entries whose keys ranges
       * from {@code fromKey} to {@code toKey}, inclusive or exclusive as indicated by the boolean
       * flags.
       *
       * <p>The {@link SortedMap#subMap} documentation states that a submap of a submap throws an {@link
       * IllegalArgumentException} if passed a {@code fromKey} less than an earlier {@code fromKey}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
Back to top