HomeSort by relevance Sort by last modified time
    Searched refs:shorter (Results 1 - 25 of 95) sorted by null

1 2 3 4

  /prebuilts/go/darwin-x86/src/html/
entity_test.go 18 t.Error("escaped entity &" + k + " is shorter than its UTF-8 encoding " + string(v))
26 t.Error("escaped entity &" + k + " is shorter than its UTF-8 encoding " + string(v[0]) + string(v[1]))
escape.go 168 `'`, "'", // "'" is shorter than "'" and apos was not in HTML until HTML5.
171 `"`, """, // """ is shorter than """.
  /prebuilts/go/linux-x86/src/html/
entity_test.go 18 t.Error("escaped entity &" + k + " is shorter than its UTF-8 encoding " + string(v))
26 t.Error("escaped entity &" + k + " is shorter than its UTF-8 encoding " + string(v[0]) + string(v[1]))
escape.go 168 `'`, "'", // "'" is shorter than "'" and apos was not in HTML until HTML5.
171 `"`, """, // """ is shorter than """.
  /system/bt/btcore/src/
property.cc 62 // length and comparing against the shorter name.
67 const bt_property_t *shorter = p1, *longer = p2; local
69 shorter = p2;
72 return strlen((const char*)longer->val) == (size_t)shorter->len &&
73 !memcmp(longer->val, shorter->val, shorter->len);
  /libcore/luni/src/main/java/java/math/
Logical.java 152 // if the negative was shorter must copy the remaining digits
163 /** @return sign = -1, magnitude = -(-longer.magnitude & -shorter.magnitude)*/
164 static BigInteger andNegative(BigInteger longer, BigInteger shorter) {
165 // PRE: longer and shorter are negative
166 // PRE: longer has at least as many digits as shorter
168 int iShorter = shorter.getFirstNonzeroDigit();
170 // Does shorter matter?
171 if (iLonger >= shorter.numberLength) {
180 digit = -shorter.digits[i] & ~longer.digits[i];
182 digit = ~shorter.digits[i] & -longer.digits[i]
    [all...]
  /prebuilts/go/darwin-x86/src/math/big/
floatmarsh.go 31 // actual mantissa slice could be shorter (trailing 0's) or longer (unused bits):
32 // - if shorter, only encode the words present
decimal.go 147 x.mant = x.mant[:w] // the number may be shorter (e.g. 1024 >> 10)
  /prebuilts/go/linux-x86/src/math/big/
floatmarsh.go 31 // actual mantissa slice could be shorter (trailing 0's) or longer (unused bits):
32 // - if shorter, only encode the words present
decimal.go 147 x.mant = x.mant[:w] // the number may be shorter (e.g. 1024 >> 10)
  /prebuilts/go/darwin-x86/test/
float_lit3.go 39 // is shorter than 1024 bits, it cannot distinguish max64+ulp64/2-1 and max64+ulp64/2.
  /prebuilts/go/linux-x86/test/
float_lit3.go 39 // is shorter than 1024 bits, it cannot distinguish max64+ulp64/2-1 and max64+ulp64/2.
  /prebuilts/go/darwin-x86/src/crypto/aes/
ctr_s390x.go 17 // will be equal to the length of shorter of the two. Returns the number
  /prebuilts/go/linux-x86/src/crypto/aes/
ctr_s390x.go 17 // will be equal to the length of shorter of the two. Returns the number
  /external/v8/tools/vim/
ninja-build.vim 35 # This is a list of files that need to identify the src directory. The shorter
  /external/bison/src/
scan-gram.l 555 /* \\[\"\'?\\] would be shorter, but it confuses xgettext. */
  /external/syslinux/mbr/
oldmbr.asm 221 ; the end of the MBR, so shorter is better. Location 440 is known to
  /prebuilts/go/darwin-x86/src/go/types/
stdlib_test.go 256 // necessarily be shorter or clearer after adding the code to
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/http2/hpack/
encode.go 223 // shorter byte string.
  /prebuilts/go/linux-x86/src/go/types/
stdlib_test.go 256 // necessarily be shorter or clearer after adding the code to
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/http2/hpack/
encode.go 223 // shorter byte string.
  /prebuilts/go/darwin-x86/src/text/template/
funcs.go 487 htmlQuot = []byte(""") // shorter than """
488 htmlApos = []byte("'") // shorter than "'" and apos was not in HTML until HTML5
  /prebuilts/go/linux-x86/src/text/template/
funcs.go 487 htmlQuot = []byte(""") // shorter than """
488 htmlApos = []byte("'") // shorter than "'" and apos was not in HTML until HTML5
  /prebuilts/go/darwin-x86/src/encoding/xml/
typeinfo.go 269 // It is okay for field paths to share a common, shorter prefix.
  /prebuilts/go/darwin-x86/src/time/
sleep_test.go 21 // shorter then 100ms when measured as difference between time.Now before and

Completed in 889 milliseconds

1 2 3 4