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

1 2 3 4 5 6

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-i386/
discarded1.d 3 #error: .*discarded output section: `.got.plt'
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-x86-64/
discarded1.d 3 #error: .*discarded output section: `.got.plt'
  /external/mesa3d/src/compiler/glsl/
lower_discard_flow.cpp 35 * the shader" sounds like the discarded fragments should effectively
41 * point that the only active channels left are discarded pixels" or
42 * "discarded pixels become inactive at the point that control flow
54 lower_discard_flow_visitor(ir_variable *discarded)
55 : discarded(discarded)
57 mem_ctx = ralloc_parent(discarded);
71 ir_variable *discarded; member in class:__anon27347::lower_discard_flow_visitor
91 ir_dereference *lhs = new(mem_ctx) ir_dereference_variable(discarded);
94 /* discarded <- condition, use (var_ref discarded) as the condition *
    [all...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-discard/
static.d 3 #error: `(\.data\.exit|data)' referenced in section `\.text' of tmpdir/dump0.o: defined in discarded section `\.data\.exit' of tmpdir/dump0.o
start.d 4 #error: `data' referenced in section `\.text' of tmpdir/dump0.o: defined in discarded section `\.data\.exit' of tmpdir/dump1.o
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-sh/sh64/
dlsection-1.s 4 ! prevent .text2 from being discarded.
5 ! Section .spurious can be discarded.
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
eh-group2.s 3 # Test intention is that LSDA must be provided by the discarded FDE.
  /build/kati/testcase/
unmatched_paren2.mk 7 # baz will be 0PASS_UNMATCHED, 1$(bar)2 will be discarded??
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/
start4.s 3 # anything so whatever is linked will be discarded.
  /external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
DfpDec.java 196 int discarded = in; // not looking at this after this point local
202 discarded |= mant[lsd-1];
205 discarded |= lsb % (lsbthreshold/10);
209 discarded |= mant[i]; // need to know if there are any discarded bits
222 inc = (n != 0) || (discarded != 0); // round up if n!=0
235 (n == 5 && discarded != 0) ||
236 (n == 5 && discarded == 0 && ((lsb / lsbthreshold) & 1) == 1); // round half-even
241 (n == 5 && discarded != 0) ||
242 (n == 5 && discarded == 0 && ((lsb / lsbthreshold) & 1) == 0); // round half-od
    [all...]
  /bionic/libc/kernel/uapi/mtd/
inftl-user.h 36 __u8 discarded; member in struct:inftl_unithead1
44 __u8 discarded; member in struct:inftl_unithead2
  /external/kernel-headers/original/uapi/mtd/
inftl-user.h 30 __u8 discarded; member in struct:inftl_unithead1
39 __u8 discarded; member in struct:inftl_unithead2
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/mtd/
inftl-user.h 30 __u8 discarded; member in struct:inftl_unithead1
39 __u8 discarded; member in struct:inftl_unithead2
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/mtd/
inftl-user.h 30 __u8 discarded; member in struct:inftl_unithead1
39 __u8 discarded; member in struct:inftl_unithead2
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/
MultU64x32.c 57 ; the output and should be discarded. So here we overwrite it
MultU64x32.S 62 # the output and should be discarded. So here we overwrite it
MultU64x32.asm 61 ; the output and should be discarded. So here we overwrite it
  /external/libchrome/base/strings/
safe_sprintf.cc 342 size_t discarded = 0; local
360 ++discarded;
363 // Need to increment either |count_| or |discarded| to make progress.
370 ++discarded;
403 if (discarded > 8*sizeof(num) + prefix_length) {
422 IncrementCount(discarded);
423 return !discarded;
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-plugin/
plugin-7.d 30 `_?func' referenced in section `\.text.*' of tmpdir/main.o: defined in discarded section .*
plugin-8.d 34 `_?func' referenced in section `\.text.*' of tmpdir/main.o: defined in discarded section .*
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
ResizableDoubleArray.java 324 * element in the array. Returns the discarded first element.
334 * @return the value which has been discarded or "pushed" out of the array
338 double discarded = internalArray[startIndex]; local
353 return discarded;
371 double discarded = internalArray[startIndex + (numElements - 1)]; local
375 return discarded;
440 * to be discarded, leaving 3,4 in the array. Throws illegalArgumentException
457 * to be discarded, leaving 1,2 in the array. Throws illegalArgumentException
475 * to be discarded, leaving 1,2 in the array.
478 * to be discarded, leaving 3,4 in the array
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/
lostcancel.go 31 ctx, _ := context.WithCancel() // ERROR "the cancel function returned by context.WithCancel should be called, not discarded, to avoid a context leak"
32 ctx, _ = context.WithTimeout() // ERROR "the cancel function returned by context.WithTimeout should be called, not discarded, to avoid a context leak"
33 ctx, _ = context.WithDeadline() // ERROR "the cancel function returned by context.WithDeadline should be called, not discarded, to avoid a context leak"
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/
lostcancel.go 31 ctx, _ := context.WithCancel() // ERROR "the cancel function returned by context.WithCancel should be called, not discarded, to avoid a context leak"
32 ctx, _ = context.WithTimeout() // ERROR "the cancel function returned by context.WithTimeout should be called, not discarded, to avoid a context leak"
33 ctx, _ = context.WithDeadline() // ERROR "the cancel function returned by context.WithDeadline should be called, not discarded, to avoid a context leak"
  /prebuilts/go/darwin-x86/src/crypto/cipher/
io.go 27 // returns short then the StreamWriter is out of sync and must be discarded.
  /prebuilts/go/linux-x86/src/crypto/cipher/
io.go 27 // returns short then the StreamWriter is out of sync and must be discarded.

Completed in 776 milliseconds

1 2 3 4 5 6