Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for Barros (0.82 sec)

  1. guava/src/com/google/common/math/IntMath.java

        /*
         * Based on Hacker's Delight Fig. 11-5, the two-table-lookup, branch-free implementation.
         *
         * The key idea is that based on the number of leading zeros (equivalently, floor(log2(x))), we
         * can narrow the possible floor(log10(x)) values to two. For example, if floor(log2(x)) is 6,
         * then 64 <= x < 128, so floor(log10(x)) is either 1 or 2.
         */
        int y = maxLog10ForLeadingZeros[Integer.numberOfLeadingZeros(x)];
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    		return nil, errors.New("no program header matches mapping info")
    	}
    	if len(headers) == 1 {
    		return headers[0], nil
    	}
    
    	// Use the file offset corresponding to the address to symbolize, to narrow
    	// down the header.
    	return elfexec.HeaderForFileOffset(headers, addr-m.start+m.offset)
    }
    
    // file implements the binutils.ObjFile interface.
    type file struct {
    	b       *binrep
    	name    string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/math/LongMath.java

        /*
         * Based on Hacker's Delight Fig. 11-5, the two-table-lookup, branch-free implementation.
         *
         * The key idea is that based on the number of leading zeros (equivalently, floor(log2(x))), we
         * can narrow the possible floor(log10(x)) values to two. For example, if floor(log2(x)) is 6,
         * then 64 <= x < 128, so floor(log10(x)) is either 1 or 2.
         */
        int y = maxLog10ForLeadingZeros[Long.numberOfLeadingZeros(x)];
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/math/LongMath.java

        /*
         * Based on Hacker's Delight Fig. 11-5, the two-table-lookup, branch-free implementation.
         *
         * The key idea is that based on the number of leading zeros (equivalently, floor(log2(x))), we
         * can narrow the possible floor(log10(x)) values to two. For example, if floor(log2(x)) is 6,
         * then 64 <= x < 128, so floor(log10(x)) is either 1 or 2.
         */
        int y = maxLog10ForLeadingZeros[Long.numberOfLeadingZeros(x)];
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  5. src/cmd/link/link_test.go

    length before the Court, perennially hopeless."`
    
    	principle int `text:"The one great principle of the English law is, to make business for itself. There is no other principle distinctly, certainly, and consistently maintained through all its narrow turnings. Viewed by this light it becomes a coherent scheme, and not the monstrous maze the laity are apt to think it. Let them but once clearly perceive that its grand principle is to make business for itself at their expense, and surely they will...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  6. src/cmd/cgo/doc.go

    a full C parser and type checker that was also aware of any extensions
    known to the system compiler (for example, all the GNU C extensions) as
    well as the system-specific header locations and system-specific
    pre-#defined macros. This is certainly possible to do, but it is an
    enormous amount of work.
    
    Cgo takes a different approach. It determines the meaning of C
    identifiers not by parsing C code but by feeding carefully constructed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/test.go

    // Test that C symbols larger than a page play nicely with the race detector.
    int ii[65537];
    
    // issue 17537
    // The void* cast introduced by cgo to avoid problems
    // with const/volatile qualifiers breaks C preprocessor macros that
    // emulate functions.
    
    typedef struct {
    	int i;
    } S17537;
    
    int I17537(S17537 *p);
    
    #define I17537(p) ((p)->i)
    
    // Calling this function used to fail without the cast.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    			// the 'go get' command, not an intermediate state, and is therefore
    			// deterministic and therefore cacheable, and the constraints on the
    			// selected version of each module can only narrow as we iterate.
    			//
    			// "all" is functionally very similar to a wildcard pattern. The set of
    			// packages imported by the main module does not change, and the query
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/expr.go

    	// 	check.expr(x, e.X)
    	// 	if x.mode == invalid {
    	// 		goto Error
    	// 	}
    	// 	check.unary(x, e, e.Op)
    	// 	if x.mode == invalid {
    	// 		goto Error
    	// 	}
    	// 	if e.Op == token.ARROW {
    	// 		x.expr = e
    	// 		return statement // receive operations may appear in statement context
    	// 	}
    
    	// case *syntax.BinaryExpr:
    	// 	check.binary(x, e, e.X, e.Y, e.Op)
    	// 	if x.mode == invalid {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    			// TODO not sure if this is best done in wide precision or narrow
    			// Double-rounding might be an issue.
    			// Note that the pre-SSA implementation does the entire calculation
    			// in wide format, so wide is compatible.
    			xreal = s.newValueOrSfCall2(divop, wt, xreal, denom)
    			ximag = s.newValueOrSfCall2(divop, wt, ximag, denom)
    
    			if pt != wt { // Narrow to store back
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top