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

1 2 3 4 56 7 8 91011>>

  /external/compiler-rt/test/scudo/
preinit.cpp 34 __attribute__((section(".preinit_array"), used))
36 __attribute__((section(".fini_array"), used))
  /external/curl/docs/cmdline-opts/
proxy-key.d 5 Same as --key but used in HTTPS proxy context.
proxy-tlspassword.d 6 Same as --tlspassword but used in HTTPS proxy context.
proxy-tlsuser.d 6 Same as --tlsuser but used in HTTPS proxy context.
proxy-tlsv1.d 5 Same as --tlsv1 but used in HTTPS proxy context.
ftp-pasv.d 8 behavior, but using this option can be used to override a previous --ftp-port
11 If this option is used several times, only the first one is used. Undoing an
16 unless --disable-epsv is used.
krb.d 9 level that is not one of these, 'private' will instead be used.
11 If this option is used several times, the last one will be used.
tftp-blksize.d 9 bytes will be used.
11 If this option is used several times, the last one will be used.
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
mips4.s 1 # Source file used to test -mips4 *non-fp* instructions.
8 # It used to be disabled due to a clash with lwc3.
  /build/make/core/combo/arch/x86/
x86_64.mk 1 # This file is used as the second (32-bit) architecture when building a generic
4 # The generic 'x86' variant cannot be used, since it resets some flags used
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug337.go 10 // bug337.go:16: len("foo") not used
12 // bug337.go:16: 3 not used
17 len("foo") // ERROR "len|value computed is not used"
bug357.go 8 // error used to have last line number in file
18 false // ERROR "false evaluated but not used|value computed is not used"
issue18915.go 13 if a := 10 { // ERROR "a := 10 used as value"
16 for b := 10 { // ERROR "b := 10 used as value"
19 switch c := 10 { // ERROR "c := 10 used as value"
  /prebuilts/go/linux-x86/test/fixedbugs/
bug337.go 10 // bug337.go:16: len("foo") not used
12 // bug337.go:16: 3 not used
17 len("foo") // ERROR "len|value computed is not used"
bug357.go 8 // error used to have last line number in file
18 false // ERROR "false evaluated but not used|value computed is not used"
issue18915.go 13 if a := 10 { // ERROR "a := 10 used as value"
16 for b := 10 { // ERROR "b := 10 used as value"
19 switch c := 10 { // ERROR "c := 10 used as value"
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/
sse-check-error.l 19 .* Error: SSE instruction `addps' is used
23 .* Error: SSE instruction `addpd' is used
27 .* Error: SSE instruction `addsubpd' is used
31 .* Error: SSE instruction `phaddw' is used
36 .* Error: SSE instruction `blendvpd' is used
39 .* Error: SSE instruction `pcmpgtq' is used
x86-64-sse-check-error.l 19 .* Error: SSE instruction `addps' is used
23 .* Error: SSE instruction `addpd' is used
27 .* Error: SSE instruction `addsubpd' is used
31 .* Error: SSE instruction `phaddw' is used
36 .* Error: SSE instruction `blendvpd' is used
39 .* Error: SSE instruction `pcmpgtq' is used
  /prebuilts/go/darwin-x86/test/
import1.go 12 import "bufio" // GCCGO_ERROR "previous|not used"
13 import bufio "os" // ERROR "redeclared|redefinition|incompatible" "imported and not used"
16 "fmt" // GCCGO_ERROR "previous|not used"
17 fmt "math" // ERROR "redeclared|redefinition|incompatible" "imported and not used: \x22math\x22 as fmt"
18 . "math" // GC_ERROR "imported and not used: \x22math\x22$"
  /prebuilts/go/linux-x86/test/
import1.go 12 import "bufio" // GCCGO_ERROR "previous|not used"
13 import bufio "os" // ERROR "redeclared|redefinition|incompatible" "imported and not used"
16 "fmt" // GCCGO_ERROR "previous|not used"
17 fmt "math" // ERROR "redeclared|redefinition|incompatible" "imported and not used: \x22math\x22 as fmt"
18 . "math" // GC_ERROR "imported and not used: \x22math\x22$"
  /external/mesa3d/src/gallium/auxiliary/pipebuffer/
pb_validate.c 58 unsigned used; member in struct:pb_validate
80 if(vl->used && vl->entries[vl->used - 1].buf == buf) {
81 vl->entries[vl->used - 1].flags |= flags;
86 if(vl->used == vl->size) {
106 assert(!vl->entries[vl->used].buf);
107 pb_reference(&vl->entries[vl->used].buf, buf);
108 vl->entries[vl->used].flags = flags;
109 ++vl->used;
121 for(i = 0; i < vl->used; ++i)
    [all...]
  /external/mesa3d/src/compiler/glsl/
opt_dead_functions.cpp 43 this->used = false;
47 bool used; member in class:__anon29238::signature_entry
94 entry->used = true;
108 entry->used = true;
121 /* Now that we've figured out which function signatures are used, remove
126 if (!entry->used) {
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_rename_regs.c 51 unsigned char * used; local
64 used = memory_pool_malloc(&c->Pool, sizeof(unsigned char) * used_length);
65 memset(used, 0, sizeof(unsigned char) * used_length);
67 rc_get_used_temporaries(c, used, used_length);
79 new_index = rc_find_free_temporary_list(c, used, used_length,
  /external/proguard/src/proguard/shrink/
InterfaceUsageMarker.java 32 * classes that are being used in the visited class.
46 private boolean used; field in class:InterfaceUsageMarker
52 * @param usageMarker the usage marker that is used to mark the classes
70 // Check if any interfaces are being used.
85 // At least one if this interface's interfaces is being used.
104 used = classUsed;
111 used = true;
124 // The ClassConstant isn't marked as being used yet. But maybe it
127 classUsed = used;
131 // The class is being used. Mark the ClassConstant as being use
    [all...]
  /external/autotest/client/site_tests/build_RootFilesystemSize/
build_RootFilesystemSize.py 39 # Filesystem Type 1B-blocks Used Available Use% Mounted on
43 used = int(output_columns[3])
46 self.output_perf_value('bytes_rootfs_test', value=float(used),
55 required_free_space = min(15 * 1024 * 1024, used * 0.02)

Completed in 295 milliseconds

1 2 3 4 56 7 8 91011>>