Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 373 for BR (0.25 sec)

  1. src/math/stubs_s390x.s

    	MOVD   R2, 0(R1)
    	BR     ·cos(SB)
    
    vectorimpl:
    	MOVD $·cosvectorfacility+0x00(SB), R1
    	MOVD $·cosAsm(SB), R2
    	MOVD R2, 0(R1)
    	BR   ·cosAsm(SB)
    
    GLOBL ·cosvectorfacility+0x00(SB), NOPTR, $8
    DATA ·cosvectorfacility+0x00(SB)/8, $·cosTrampolineSetup(SB)
    
    TEXT ·archCosh(SB), NOSPLIT, $0
    	MOVD ·coshvectorfacility+0x00(SB), R1
    	BR   (R1)
    
    TEXT ·coshTrampolineSetup(SB), NOSPLIT, $0
    	MOVB   ·hasVX(SB), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 12.4K bytes
    - Viewed (0)
  2. src/compress/bzip2/bit_reader.go

    // and the error can be obtained by calling bitReader.Err().
    func (br *bitReader) ReadBits64(bits uint) (n uint64) {
    	for bits > br.bits {
    		b, err := br.r.ReadByte()
    		if err == io.EOF {
    			err = io.ErrUnexpectedEOF
    		}
    		if err != nil {
    			br.err = err
    			return 0
    		}
    		br.n <<= 8
    		br.n |= uint64(b)
    		br.bits += 8
    	}
    
    	// br.n looks like this (assuming that br.bits = 14 and bits = 6):
    	// Bit: 111111
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * gl=gl<br>
         * gu=gu<br>
         * he=he<br>
         * hi=hi<br>
         * hr=hr<br>
         * hu=hu<br>
         * hy=hy<br>
         * id=id<br>
         * it=it<br>
         * ja=ja<br>
         * ko=ko<br>
         * lt=lt<br>
         * lv=lv<br>
         * mk=mk<br>
         * ml=ml<br>
         * nl=nl<br>
         * no=no<br>
         * pa=pa<br>
         * pl=pl<br>
         * pt=pt<br>
         * pt-br=pt-br<br>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

        /**
         * Get the value for the key 'time.adjust.time.millis'. <br>
         * The value is, e.g. 0 <br>
         * comment: <br>
         * one day: 86400000, three days: 259200000, five days: 432000000, one week: 604800000, one year: 31556926000<br>
         * special script :: absolute mode: $(2014/07/10), relative mode: addDay(3).addMonth(4)<br>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. src/internal/zstd/bits.go

    func (br *bitReader) moreBits() error {
    	for br.cnt < 16 {
    		if br.off >= uint32(len(br.data)) {
    			return br.r.makeEOFError(int(br.off))
    		}
    		c := br.data[br.off]
    		br.off++
    		br.bits |= uint32(c) << br.cnt
    		br.cnt += 8
    	}
    	return nil
    }
    
    // val is called to fetch a value of b bits.
    func (br *bitReader) val(b uint8) uint32 {
    	r := br.bits & ((1 << b) - 1)
    	br.bits >>= b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:13 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. src/runtime/race_ppc64le.s

    	BR	sync∕atomic·LoadInt32(SB)
    
    TEXT	sync∕atomic·LoadUint64(SB), NOSPLIT, $0-16
    	GO_ARGS
    	BR	sync∕atomic·LoadInt64(SB)
    
    TEXT	sync∕atomic·LoadUintptr(SB), NOSPLIT, $0-16
    	GO_ARGS
    	BR	sync∕atomic·LoadInt64(SB)
    
    TEXT	sync∕atomic·LoadPointer(SB), NOSPLIT, $0-16
    	GO_ARGS
    	BR	sync∕atomic·LoadInt64(SB)
    
    // Store atomic in tsan
    TEXT	sync∕atomic·StoreInt32(SB), NOSPLIT, $0-12
    	GO_ARGS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  7. src/internal/zstd/fse.go

    		var count int
    		if int(br.bits&uint32(threshold-1)) < max {
    			// A small value.
    			count = int(br.bits & uint32((threshold - 1)))
    			br.bits >>= bitsNeeded - 1
    			br.cnt -= uint32(bitsNeeded - 1)
    		} else {
    			// A large value.
    			count = int(br.bits & uint32((2*threshold - 1)))
    			if count >= threshold {
    				count -= max
    			}
    			br.bits >>= bitsNeeded
    			br.cnt -= uint32(bitsNeeded)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:44:06 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/mail/CrawlerPostcard.java

         * Even if empty string, treated as empty plainly. So "IF pmb != null" is false if empty.
         * @param hostname The parameter value of hostname. (NotNull)
         */
        public void setHostname(String hostname) {
            registerVariable("hostname", hostname);
        }
    
        /**
         * Set the value of jobname, used in parameter comment. <br>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/MergeInstrumentationAnalysisTransform.java

     *
     * Outputs either a directory with analysis files OR original artifact.<br><br>
     *
     * Directory with analysis files has next content:<br>
     * 1. Instrumentation classpath marker file.<br>
     * 2. A properties file with original file hash and original file name.<br>
     * 3. A properties file with instrumented class dependencies in a file.<br><br>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/FileLockManager.java

             * <br><br>
             *
             * Not supported by {@link FileLockManager}.
             */
            OnDemand,
    
            /**
             * Multiple readers, no writers.
             * <br><br>
             *
             * Used for read-only file locks/caches, many processes can access the lock target/cache concurrently.
             * <br><br>
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top