Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for arabic (0.27 sec)

  1. src/cmd/internal/obj/ppc64/a.out.go

    	AMULLDVCC
    	AMULLDV
    	ARFID
    	ARLDMI
    	ARLDMICC
    	ARLDIMI
    	ARLDIMICC
    	ARLDC
    	ARLDCCC
    	ARLDCR
    	ARLDCRCC
    	ARLDICR
    	ARLDICRCC
    	ARLDCL
    	ARLDCLCC
    	ARLDICL
    	ARLDICLCC
    	ARLDIC
    	ARLDICCC
    	ACLRLSLDI
    	AROTL
    	AROTLW
    	ASLBIA
    	ASLBIE
    	ASLBMFEE
    	ASLBMFEV
    	ASLBMTE
    	ASLD
    	ASLDCC
    	ASRD
    	ASRAD
    	ASRADCC
    	ASRDCC
    	AEXTSWSLI
    	AEXTSWSLICC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/math/LongMathTest.java

        }
      }
    
      @GwtIncompatible // isPrime is GWT-incompatible
      public void testIsPrimeManyConstants() {
        // Test the thorough test inputs, which also includes special constants in the Miller-Rabin
        // tests.
        for (long l : POSITIVE_LONG_CANDIDATES) {
          assertEquals(BigInteger.valueOf(l).isProbablePrime(100), LongMath.isPrime(l));
        }
      }
    
      @GwtIncompatible // isPrime is GWT-incompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 20:15:57 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  3. src/mdo/reader-stax.vm

            entities.put("ni", "\u220b");
            entities.put("prod", "\u220f");
            entities.put("sum", "\u2211");
            entities.put("minus", "\u2212");
            entities.put("lowast", "\u2217");
            entities.put("radic", "\u221a");
            entities.put("prop", "\u221d");
            entities.put("infin", "\u221e");
            entities.put("ang", "\u2220");
            entities.put("and", "\u2227");
            entities.put("or", "\u2228");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  4. src/mdo/reader.vm

            entities.put("ni", "\u220b");
            entities.put("prod", "\u220f");
            entities.put("sum", "\u2211");
            entities.put("minus", "\u2212");
            entities.put("lowast", "\u2217");
            entities.put("radic", "\u221a");
            entities.put("prop", "\u221d");
            entities.put("infin", "\u221e");
            entities.put("ang", "\u2220");
            entities.put("and", "\u2227");
            entities.put("or", "\u2228");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/math/LongMathTest.java

        }
      }
    
      @GwtIncompatible // isPrime is GWT-incompatible
      public void testIsPrimeManyConstants() {
        // Test the thorough test inputs, which also includes special constants in the Miller-Rabin
        // tests.
        for (long l : POSITIVE_LONG_CANDIDATES) {
          assertEquals(BigInteger.valueOf(l).isProbablePrime(100), LongMath.isPrime(l));
        }
      }
    
      @GwtIncompatible // isPrime is GWT-incompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 20:15:57 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/math/LongMath.java

          }
        }
        throw new AssertionError();
      }
    
      /*
       * If n <= millerRabinBases[i][0], then testing n against bases millerRabinBases[i][1..] suffices
       * to prove its primality. Values from miller-rabin.appspot.com.
       *
       * NOTE: We could get slightly better bases that would be treated as unsigned, but benchmarks
       * showed negligible performance improvements.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/math/LongMath.java

          }
        }
        throw new AssertionError();
      }
    
      /*
       * If n <= millerRabinBases[i][0], then testing n against bases millerRabinBases[i][1..] suffices
       * to prove its primality. Values from miller-rabin.appspot.com.
       *
       * NOTE: We could get slightly better bases that would be treated as unsigned, but benchmarks
       * showed negligible performance improvements.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loadelf/ldelf.go

    		if nulIndex < 0 {
    			return false, 0, fmt.Errorf("corrupt .ARM.attributes (section name not NUL-terminated)\n")
    		}
    		name := string(sectiondata[:nulIndex])
    		sectiondata = sectiondata[nulIndex+1:]
    
    		if name != "aeabi" {
    			continue
    		}
    		for len(sectiondata) != 0 {
    			subsectiontag, sz := binary.Uvarint(sectiondata)
    			subsectionsize := e.Uint32(sectiondata[sz:])
    			subsectiondata := sectiondata[sz+4 : subsectionsize]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top