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

1 2 3 4 5

  /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 63 // length and comparing against the shorter name.
68 const bt_property_t *shorter = p1, *longer = p2; local
70 shorter = p2;
73 return strlen((const char*)longer->val) == (size_t)shorter->len &&
74 !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/cmd/go/internal/base/
path.go 23 // ShortPath returns an absolute or relative name for path, whatever is shorter.
32 // made relative to the current directory if they would be shorter.
  /prebuilts/go/linux-x86/src/cmd/go/internal/base/
path.go 23 // ShortPath returns an absolute or relative name for path, whatever is shorter.
32 // made relative to the current directory if they would be shorter.
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/x86/
ytab.go 27 // where shorter arg list is matched.
  /prebuilts/go/linux-x86/src/cmd/internal/obj/x86/
ytab.go 27 // where shorter arg list is matched.
  /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
  /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
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/msp430/
errata_warns.l 2 [^:]*:5: Warning: cpu4: not converting PUSH #4 to shorter form
3 [^:]*:6: Warning: cpu4: not converting PUSH #8 to shorter form
  /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/tensorflow/tensorflow/contrib/lite/toco/
tooling_util.cc 558 const Shape* shorter = &shape1; local
561 shorter = &shape0;
564 // Walk dimensions back to front until we run out of dimensions in the shorter
567 int shorter_index = shorter->dimensions_count() - 1;
570 const int d_short = shorter->dims(shorter_index);
586 const Shape* shorter = &shape1; local
589 shorter = &shape0;
592 // Walk dimensions back to front until we run out of dimensions in the shorter
595 int shorter_index = shorter->dimensions_count() - 1;
598 const int d_short = shorter->dims(shorter_index)
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/x509/
pkcs8_test.go 38 // regenerate this you may, randomly, find that it's a byte shorter than
  /prebuilts/go/linux-x86/src/crypto/x509/
pkcs8_test.go 38 // regenerate this you may, randomly, find that it's a byte shorter than
  /external/tensorflow/tensorflow/core/lib/gtl/
inlined_vector_test.cc 626 InstanceVec longer, shorter; local
629 shorter.push_back(Instance(i));
635 shorter = longer;
638 longer = shorter;
  /external/v8/tools/vim/
ninja-build.vim 35 # This is a list of files that need to identify the src directory. The shorter
  /frameworks/base/services/core/java/com/android/server/content/
SyncOperation.java 369 String dump(PackageManager pm, boolean shorter, SyncAdapterStateFetcher appStates) {
416 if (!shorter) {
  /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 272 // necessarily be shorter or clearer after adding the code to

Completed in 525 milliseconds

1 2 3 4 5