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

1 2 34 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/cmd/go/testdata/src/complex/nest/sub/test12/
p.go 3 // Check that vendor/v1 is used but vendor/v2 is NOT used (sub/vendor/v2 wins).
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/src/complex/nest/sub/test23/
p.go 3 // Check that vendor/v3 is used but vendor/v2 is NOT used (sub/vendor/v2 wins).
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/complex/nest/sub/test12/
p.go 3 // Check that vendor/v1 is used but vendor/v2 is NOT used (sub/vendor/v2 wins).
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/complex/nest/sub/test23/
p.go 3 // Check that vendor/v3 is used but vendor/v2 is NOT used (sub/vendor/v2 wins).
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/hppa/parse/
stringer.s 4 ; GAS used to mis-parse the embedded quotes
7 ; Octal escapes used to consume > 3 chars which led to this
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
abs.s 1 # Source file used to test the abs macro.
align.s 1 # Test file used to verify maximum alignment value.
illegal.s 1 # Source file used to test illegal operands.
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/nios2/
cdx_break.s 1 # Source file used to test the CDX break.n instructions
cdx_ret.s 1 # Source file used to test the ret.n instruction
eni.s 1 # Source file used to test the eni instruction.
flushda.s 1 # Source file used to test the flushda instruction.
jmp.s 1 # Source file used to test the jmp instruction.
nor.s 1 # Source file used to test the nor instruction
trap.s 1 # Source file used to test the trap instructions
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-plugin/
pr12760b.c 3 __attribute__((used, section(".gnu.warning." #x))) \
  /external/toybox/toys/pending/
klogd.c 62 * "used" amount to track next read to start.
66 int prio, size, used = 0; local
83 start = msg_buffer + used; //start updated for re-read.
85 size = klogctl(2, start, sizeof(msg_buffer) - used - 1);
87 size = xread(TT.fd, start, sizeof(msg_buffer) - used - 1);
91 if (used) start = msg_buffer;
93 if ((line_start = strsep(&start, "\n")) != NULL && start != NULL) used = 0;
95 used = strlen(line_start);
97 if (used < (sizeof(msg_buffer) - 1)) break;
98 used = 0; //we have buffer full, log it as it is
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue20298.go 7 // Issue 20298: "imported and not used" error report order was non-deterministic.
14 "bufio" // ERROR "imported and not used"
15 "bytes" // ERROR "imported and not used"
16 "crypto/x509" // ERROR "imported and not used"
17 "flag" // ERROR "imported and not used"
18 "fmt" // ERROR "imported and not used"
19 "io" // ERROR "imported and not used"
20 "io/ioutil" // ERROR "imported and not used"
21 "log" // ERROR "imported and not used"
22 "math" // ERROR "imported and not used"
    [all...]
bug379.go 10 // bug378.go:17: 1 + 2 not used
12 // bug378.go:17: 1 not used
17 1 + 2 // ERROR "1 \+ 2 evaluated but not used|value computed is not used"
  /prebuilts/go/linux-x86/test/fixedbugs/
issue20298.go 7 // Issue 20298: "imported and not used" error report order was non-deterministic.
14 "bufio" // ERROR "imported and not used"
15 "bytes" // ERROR "imported and not used"
16 "crypto/x509" // ERROR "imported and not used"
17 "flag" // ERROR "imported and not used"
18 "fmt" // ERROR "imported and not used"
19 "io" // ERROR "imported and not used"
20 "io/ioutil" // ERROR "imported and not used"
21 "log" // ERROR "imported and not used"
22 "math" // ERROR "imported and not used"
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/d30v/
warn_oddreg.l 2 .*:5: Warning: Odd numbered register used as target of multi-register instruction
3 .*:6: Warning: Odd numbered register used as target of multi-register instruction
4 .*:7: Warning: Odd numbered register used as target of multi-register instruction
5 .*:8: Warning: Odd numbered register used as target of multi-register instruction
6 .*:9: Warning: Odd numbered register used as target of multi-register instruction
7 .*:10: Warning: Odd numbered register used as target of multi-register instruction
8 .*:11: Warning: Odd numbered register used as target of multi-register instruction
9 .*:12: Warning: Odd numbered register used as target of multi-register instruction
13 1 # GAS should print a warning when an odd register is used as a target
18 .* Warning: Odd numbered register used as target of multi-register instructio
    [all...]
  /external/oj-libjdwp/src/share/back/
bag.c 33 int used; /* number of items in bag */ member in struct:bag
50 theBag->used = 0;
62 newBag->used = oldBag->used;
63 (void)memcpy(newBag->items, oldBag->items, newBag->used * newBag->itemSize);
82 char *itemsEnd = items + (itemSize * theBag->used);
102 if (theBag->used >= allocated) {
109 (void)memcpy(new_items, items, (theBag->used) * itemSize);
115 ret = ((char *)items) + (itemSize * (theBag->used)++);
123 int used = --(theBag->used) local
    [all...]
  /external/clang/test/SemaCXX/
warn-unused-attribute.cpp 14 Test used; local
16 used.use();
  /external/curl/docs/cmdline-opts/
max-redirs.d 6 Set maximum number of redirection-followings allowed. When --location is used,
7 is used to prevent curl from following redirections \&"in absurdum". By
11 If this option is used several times, the last one will be used.
  /external/webrtc/webrtc/base/
ratelimiter.cc 20 void RateLimiter::Use(size_t used, double time) {
26 used_in_period_ += used;

Completed in 1459 milliseconds

1 2 34 5 6 7 8 91011>>