Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for NV (0.08 sec)

  1. src/cmd/compile/internal/ssa/regalloc.go

    		s.blockOrder[b.ID] = int32(i)
    	}
    
    	s.regs = make([]regState, s.numRegs)
    	nv := f.NumValues()
    	if cap(s.f.Cache.regallocValues) >= nv {
    		s.f.Cache.regallocValues = s.f.Cache.regallocValues[:nv]
    	} else {
    		s.f.Cache.regallocValues = make([]valState, nv)
    	}
    	s.values = s.f.Cache.regallocValues
    	s.orig = s.f.Cache.allocValueSlice(nv)
    	s.copies = make(map[*Value]bool)
    	for _, b := range s.visitOrder {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  2. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"video/mj2",
    				"video/mp1s",
    				"video/mp2p",
    				"video/mp2t",
    				"video/mp4",
    				"video/mp4v-es",
    				"video/mpeg",
    				"video/mpeg4-generic",
    				"video/mpv",
    				"video/nv",
    				"video/ogg",
    				"video/daala",
    				"video/theora",
    				"video/x-dirac",
    				"video/x-ogm",
    				"video/x-ogguvs",
    				"video/x-oggyuv",
    				"video/x-oggrgb",
    				"video/parityfec",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/CharMatcher.java

      private static final class Digit extends RangesMatcher {
        // Plug the following UnicodeSet pattern into
        // https://unicode.org/cldr/utility/list-unicodeset.jsp
        // [[:Nd:]&[:nv=0:]&[\u0000-\uFFFF]]
        // and get the zeroes from there.
    
        // Must be in ascending order.
        private static final String ZEROES =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. src/compress/flate/testdata/huffman-rand-max.in

    f�&�٩����`$���Y۱Ad���S�������K���ڨIz��s���0Q�Dc&~
    dG�3EJ��
    }�`7�K
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 64K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/CharMatcher.java

      private static final class Digit extends RangesMatcher {
        // Plug the following UnicodeSet pattern into
        // https://unicode.org/cldr/utility/list-unicodeset.jsp
        // [[:Nd:]&[:nv=0:]&[\u0000-\uFFFF]]
        // and get the zeroes from there.
    
        // Must be in ascending order.
        private static final String ZEROES =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		default:
    			st.fail("unrecognized special G name code")
    			panic("not reached")
    		}
    	}
    }
    
    // callOffset parses:
    //
    //	<call-offset> ::= h <nv-offset> _
    //	              ::= v <v-offset> _
    //
    //	<nv-offset> ::= <(offset) number>
    //
    //	<v-offset> ::= <(offset) number> _ <(virtual offset) number>
    //
    // The c parameter, if not 0, is a character we just read which is the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  7. src/time/time.go

    // tail of buf, omitting trailing zeros. It omits the decimal
    // point too when the fraction is 0. It returns the index where the
    // output bytes begin and the value v/10**prec.
    func fmtFrac(buf []byte, v uint64, prec int) (nw int, nv uint64) {
    	// Omit trailing zeros up to and including decimal point.
    	w := len(buf)
    	print := false
    	for i := 0; i < prec; i++ {
    		digit := v % 10
    		print = print || digit != 0
    		if print {
    			w--
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
Back to top