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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/d10v/
instruction_packing-006.s 1 ;; sequence control operands need to be packed with nop's
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
empty.s 1 # An empty source file for tests that need no instructions.
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mips-elf/
nan-2008.s 3 # We need some section contents for the ELF header flag compatibility check
nan-legacy.s 3 # We need some section contents for the ELF header flag compatibility check
  /external/fio/lib/
output_buffer.c 26 size_t need = len - (out->max_buflen - out->buflen); local
29 need = max((size_t) BUF_INC, need);
30 out->max_buflen += need;
34 if (old_max + need > out->max_buflen)
35 need = out->max_buflen - old_max;
36 memset(&out->buf[old_max], 0, need);
  /frameworks/support/collection/src/main/java/androidx/collection/
ContainerHelpers.java 24 public static int idealIntArraySize(int need) {
25 return idealByteArraySize(need * 4) / 4;
28 public static int idealLongArraySize(int need) {
29 return idealByteArraySize(need * 8) / 8;
32 public static int idealByteArraySize(int need) {
34 if (need <= (1 << i) - 12)
37 return need;
  /external/clang/test/Lexer/
string-literal-errors.cpp 27 #define foo() lots and lots of tokens, need at least 8 to fill up the smallvector buffer #BadThingsHappenNow
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
le-fpconst.s 2 # These need ARM specific support because 8 byte fp constants in little
  /external/mesa3d/src/mesa/drivers/dri/i965/
intel_resolve_map.c 32 * changed to the given value of \c need.
38 unsigned need)
42 map->need = need;
51 m->need = need;
  /frameworks/base/core/java/android/text/style/
DrawableMarginSpan.java 104 int need = ht - (v + fm.descent - fm.ascent - istartv); local
105 if (need > 0) {
106 fm.descent += need;
109 need = ht - (v + fm.bottom - fm.top - istartv);
110 if (need > 0) {
111 fm.bottom += need;
IconMarginSpan.java 101 int need = ht - (v + fm.descent - fm.ascent - istartv); local
102 if (need > 0) {
103 fm.descent += need;
106 need = ht - (v + fm.bottom - fm.top - istartv);
107 if (need > 0) {
108 fm.bottom += need;
  /prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.9/x86_64-linux-android/lib/ldscripts/
i386linux.xr 22 *(.need)
i386linux.xu 22 *(.need)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/lib/ldscripts/
i386linux.xr 18 *(.need)
i386linux.xu 18 *(.need)
  /prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/x86_64-linux-android/lib/ldscripts/
i386linux.xr 22 *(.need)
i386linux.xu 22 *(.need)
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mmix/
pop-op.s 2 # No need to check the canonical three constants.
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/nios2/
warn_nobreak.l 3 If you don't need to debug this code use .set nobreak to turn off this warning.
5 If you don't need to debug this code use .set nobreak to turn off this warning.
7 If you don't need to debug this code use .set nobreak to turn off this warning.
9 If you don't need to debug this code use .set nobreak to turn off this warning.
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-aarch64/
farcall-b-plt.s 8 # we need long branch veneer.
farcall-bl-plt.s 9 # we need long branch veneer.
  /external/flatbuffers/docs/source/
README_TO_GENERATE_DOCS.md 4 will first need to install two programs.
6 1. You will need to install `doxygen`. See
9 2. You will need to install `doxypypy` to format python comments appropriately.
12 *Note: You will need both `doxygen` and `doxypypy` to be in your
15 After you have both of those files installed and in your path, you need to
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug285.go 89 bug286.go:23: invalid map index false - need type B
90 bug286.go:80: invalid map index z - need type interface { }
91 bug286.go:83: invalid map index new(struct { x int }) - need type interface { }
92 bug286.go:84: invalid map index p - need type interface { }
93 bug286.go:85: invalid map index false - need type interface { }
94 bug286.go:86: invalid map index 17 - need type interface { }
95 bug286.go:87: invalid map index "foo" - need type interface { }
96 bug286.go:93: invalid map index new(struct { x int }) - need type I1
97 bug286.go:94: invalid map index false - need type I1
98 bug286.go:95: invalid map index 17 - need type I
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/
bug285.go 89 bug286.go:23: invalid map index false - need type B
90 bug286.go:80: invalid map index z - need type interface { }
91 bug286.go:83: invalid map index new(struct { x int }) - need type interface { }
92 bug286.go:84: invalid map index p - need type interface { }
93 bug286.go:85: invalid map index false - need type interface { }
94 bug286.go:86: invalid map index 17 - need type interface { }
95 bug286.go:87: invalid map index "foo" - need type interface { }
96 bug286.go:93: invalid map index new(struct { x int }) - need type I1
97 bug286.go:94: invalid map index false - need type I1
98 bug286.go:95: invalid map index 17 - need type I
    [all...]
  /external/curl/docs/cmdline-opts/
tcp-nodelay.d 8 Since 7.50.2, curl sets this option by default and you need to explicitly

Completed in 676 milliseconds

1 2 3 4 5 6 7 8 91011>>