HomeSort by relevance Sort by last modified time
    Searched refs:used (Results 26 - 50 of 4561) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/test/fixedbugs/
issue4463.go 20 append(a, 0) // ERROR "not used"
21 cap(a) // ERROR "not used"
22 complex(1, 2) // ERROR "not used"
23 imag(1i) // ERROR "not used"
24 len(a) // ERROR "not used"
25 make([]int, 10) // ERROR "not used"
26 new(int) // ERROR "not used"
27 real(1i) // ERROR "not used"
28 unsafe.Alignof(a) // ERROR "not used"
29 unsafe.Offsetof(s.f) // ERROR "not used"
    [all...]
bug423.go 7 // gc used to overflow a counter when a variable was
18 _ = X // used once
49 X = 0 // used 32 times
81 X = 0 // used 64 times
121 X = 0 // used 96 times
145 X = 0 // used 128 times
209 X = 0 // used 200 times
273 X = 0 // used 256 times
  /external/clang/test/CodeGen/
block-with-perdefinedexpr.c 8 __attribute__((used))
  /external/clang/test/Sema/
gnu-attributes.c 8 struct s __attribute__((used)) foo;
18 struct s *quux __attribute__((used));
  /external/vboot_reference/firmware/lib/
utility_string.c 52 /* Don't count the terminating null in the bytes used */
58 uint32_t used = 0; local
64 while (dest[used] && used < destlen - 1)
65 used++;
68 while (*src && used < destlen - 1)
69 dest[used++] = *src++;
72 dest[used] = 0;
73 return used;
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/ia64/
hint.b-err.l 2 .*:1: Error: hint.b shouldn't be used
3 .*:2: Error: hint.b shouldn't be used
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
module-defer-warn2.l 2 .*:2: Error: `gp=64' used with a 32-bit.*
3 .*:2: .*: `fp=64' used with a 32-bit.*
noat-2.l 2 .*\.s:2: Error: macro used \$at after "\.set noat"
noat-3.l 2 .*\.s:2: Error: macro used \$at after "\.set noat"
noat-4.l 2 .*\.s:2: Error: macro used \$at after "\.set noat"
noat-5.l 2 .*\.s:2: Error: macro used \$at after "\.set noat"
noat-6.l 2 .*\.s:2: Error: macro used \$at after "\.set noat"
noat-7.l 2 .*\.s:2: Error: macro used \$at after "\.set noat"
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic6x/
reloc-bad-4.l 2 [^:]*:7: Error: \$DSBT_INDEX must be used with __c6xabi_DSBT_BASE
resource-func-unit-1.l 2 [^:]*:9: Error: functional unit already used in this execute packet
resource-func-unit-2.l 2 [^:]*:17: Error: functional unit already used in this execute packet
3 [^:]*:19: Error: functional unit already used in this execute packet
  /toolchain/binutils/binutils-2.27/gold/testsuite/
script_test_11a.c 3 static unsigned int buffer1[256] __attribute((used));
4 static unsigned int buffer2[256] __attribute((used)) = { 1 };
  /external/kmod/shared/
strbuf.c 56 buf->used = 0;
68 bytes = realloc(buf->bytes, buf->used + 1);
73 bytes[buf->used] = '\0';
79 if (!buf_grow(buf, buf->used + 1))
81 buf->bytes[buf->used] = '\0';
87 if (!buf_grow(buf, buf->used + 1))
89 buf->bytes[buf->used] = ch;
90 buf->used++;
103 if (!buf_grow(buf, buf->used + len))
106 memcpy(buf->bytes + buf->used, str, len)
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug423.go 7 // gc used to overflow a counter when a variable was
18 _ = X // used once
49 X = 0 // used 32 times
81 X = 0 // used 64 times
121 X = 0 // used 96 times
145 X = 0 // used 128 times
209 X = 0 // used 200 times
273 X = 0 // used 256 times
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/nios2/
break.s 1 # Source file used to test the 20-bit break instructions
bret.s 1 # Source file used to test the bret instructions
ret.s 1 # Source file used to test the ret instructions
sync.s 1 # Source file used to test the sync instructions
tret.s 1 # Source file used to test the ret instructions
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/
foo.c 10 __attribute__ ((used, section (".init_array"), aligned (sizeof (void *))))

Completed in 150 milliseconds

12 3 4 5 6 7 8 91011>>