Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for i$ (0.03 sec)

  1. src/cmd/cgo/internal/test/cthread_windows.c

    addThread(void *p)
    {
    	int i, max;
    	
    	max = *(int*)p;
    	for(i=0; i<max; i++)
    		Add(i);
    	return 0;
    }
    
    void
    doAdd(int max, int nthread)
    {
    	enum { MaxThread = 20 };
    	int i;
    	uintptr_t thread_id[MaxThread];
    	
    	if(nthread > MaxThread)
    		nthread = MaxThread;
    	for(i=0; i<nthread; i++)
    		thread_id[i] = _beginthreadex(0, 0, addThread, &max, 0, 0);
    	for(i=0; i<nthread; i++) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/arch/arch.go

    	for i := ppc64.REG_R0; i <= ppc64.REG_R31; i++ {
    		register[obj.Rconv(i)] = int16(i)
    	}
    	for i := ppc64.REG_F0; i <= ppc64.REG_F31; i++ {
    		register[obj.Rconv(i)] = int16(i)
    	}
    	for i := ppc64.REG_V0; i <= ppc64.REG_V31; i++ {
    		register[obj.Rconv(i)] = int16(i)
    	}
    	for i := ppc64.REG_VS0; i <= ppc64.REG_VS63; i++ {
    		register[obj.Rconv(i)] = int16(i)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 06:51:28 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  3. android/guava-tests/benchmark/com/google/common/math/BigIntegerMathRoundingBenchmark.java

      @BeforeExperiment
      void setUp() {
        for (int i = 0; i < ARRAY_SIZE; i++) {
          positive[i] = randomPositiveBigInteger(1024);
          nonzero1[i] = randomNonZeroBigInteger(1024);
          nonzero2[i] = randomNonZeroBigInteger(1024);
        }
      }
    
      @Benchmark
      int log2(int reps) {
        int tmp = 0;
        for (int i = 0; i < reps; i++) {
          int j = i & ARRAY_MASK;
          tmp += BigIntegerMath.log2(positive[j], mode);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 30 13:06:20 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  4. src/reflect/swapper.go

    			return func(i, j int) { ps[i], ps[j] = ps[j], ps[i] }
    		}
    		if typ.Kind() == abi.String {
    			ss := *(*[]string)(v.ptr)
    			return func(i, j int) { ss[i], ss[j] = ss[j], ss[i] }
    		}
    	} else {
    		switch size {
    		case 8:
    			is := *(*[]int64)(v.ptr)
    			return func(i, j int) { is[i], is[j] = is[j], is[i] }
    		case 4:
    			is := *(*[]int32)(v.ptr)
    			return func(i, j int) { is[i], is[j] = is[j], is[i] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:30 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. src/strings/search.go

    	// pattern.
    	lastPrefix := last
    	for i := last; i >= 0; i-- {
    		if HasPrefix(pattern, pattern[i+1:]) {
    			lastPrefix = i + 1
    		}
    		// lastPrefix is the shift, and (last-i) is len(suffix).
    		f.goodSuffixSkip[i] = lastPrefix + last - i
    	}
    	// Second pass: find repeats of pattern's suffix starting from the front.
    	for i := 0; i < last; i++ {
    		lenSuffix := longestCommonSuffix(pattern, pattern[1:i+1])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 18:49:51 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. test/escape_param.go

    	i := 0 // ERROR "moved to heap: i$"
    	p := Pair{}
    	p.param4(&i)
    	_ = p
    }
    
    func caller4b() {
    	i := 0 // ERROR "moved to heap: i$"
    	p := Pair{}
    	p.param4(&i)
    	sink = p // ERROR "p escapes to heap$"
    }
    
    // in -> heap
    func param5(i *int) { // ERROR "leaking param: i$"
    	sink = i
    }
    
    func caller5() {
    	i := 0 // ERROR "moved to heap: i$"
    	param5(&i)
    }
    
    // *in -> heap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 26 23:50:32 UTC 2021
    - 8.9K bytes
    - Viewed (0)
  7. android/guava-tests/benchmark/com/google/common/base/AsciiBenchmark.java

        boolean dummy = false;
        for (int i = 0; i < reps; i++) {
          for (int n = 0; n < chars.length; n++) {
            dummy ^= Ascii.isUpperCase(chars[n]);
          }
        }
        return dummy;
      }
    
      static String charSequenceToUpperCase(CharSequence chars) {
        char[] newChars = new char[chars.length()];
        for (int i = 0; i < newChars.length; i++) {
          newChars[i] = Ascii.toUpperCase(chars.charAt(i));
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.8K bytes
    - Viewed (0)
  8. src/image/png/writer.go

    	// The up filter.
    	sum := 0
    	for i := 0; i < n; i++ {
    		cdat2[i] = cdat0[i] - pdat[i]
    		sum += abs8(cdat2[i])
    	}
    	best := sum
    	filter := ftUp
    
    	// The Paeth filter.
    	sum = 0
    	for i := 0; i < bpp; i++ {
    		cdat4[i] = cdat0[i] - pdat[i]
    		sum += abs8(cdat4[i])
    	}
    	for i := bpp; i < n; i++ {
    		cdat4[i] = cdat0[i] - paeth(cdat0[i-bpp], pdat[i], pdat[i-bpp])
    		sum += abs8(cdat4[i])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. test/fixedbugs/issue9370.go

    	_ = c == e
    	_ = c != e
    	_ = c >= e // ERROR "invalid operation.*not defined|invalid comparison|cannot compare"
    
    	_ = i == c
    	_ = i != c
    	_ = i >= c // ERROR "invalid operation.*not defined|invalid comparison|cannot compare"
    	_ = c == i
    	_ = c != i
    	_ = c >= i // ERROR "invalid operation.*not defined|invalid comparison|cannot compare"
    
    	_ = e == n
    	_ = e != n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 22 17:50:13 UTC 2020
    - 5K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependenciesMetadata.java

         *
         * @param dependencyNotation the dependency
         */
        void add(String dependencyNotation);
    
        /**
         * Add a dependency or a dependency constraint using the map notation: <code>group: <i>group</i>, name: <i>name</i>, version: <i>version</i></code>.
         *
         * @param dependencyNotation the dependency
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 2.3K bytes
    - Viewed (0)
Back to top