HomeSort by relevance Sort by last modified time
    Searched defs:discard (Results 1 - 25 of 279) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/compiler/nir/
nir_lower_bitmap.c 87 nir_intrinsic_instr *discard; local
108 discard = nir_intrinsic_instr_create(shader, nir_intrinsic_discard_if);
109 discard->src[0] = nir_src_for_ssa(cond);
110 nir_builder_instr_insert(b, &discard->instr);
nir_lower_clip.c 280 nir_intrinsic_instr *discard; local
285 discard = nir_intrinsic_instr_create(b.shader,
287 discard->src[0] = nir_src_for_ssa(cond);
288 nir_builder_instr_insert(&b, &discard->instr);
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_derived.c 212 boolean discard = local
216 lp_setup_set_rasterizer_discard(llvmpipe->setup, discard);
  /prebuilts/go/darwin-x86/src/runtime/
mwbbuf.go 98 // discard resets b's next pointer, but not its end pointer.
103 func (b *wbBuf) discard() { func
162 getg().m.p.ptr().wbBuf.discard()
172 getg().m.p.ptr().wbBuf.discard()
  /prebuilts/go/linux-x86/src/runtime/
mwbbuf.go 98 // discard resets b's next pointer, but not its end pointer.
103 func (b *wbBuf) discard() { func
162 getg().m.p.ptr().wbBuf.discard()
172 getg().m.p.ptr().wbBuf.discard()
  /external/aac/libFDK/include/arm/
cplx_mul_arm.h 138 LONG discard; local
143 : "=&r"(tmp1), "=&r"(tmp2), "=&r"(discard)
fixmadd_arm.h 165 INT discard = 0; local
167 asm("smlal %0, %1, %2, %3;\n" : "+r"(discard), "+r"(result) : "r"(a), "r"(b));
fixmul_arm.h 147 INT discard; local
149 : "=&r"(discard), "=r"(result)
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicClientCookie2.java 54 private boolean discard; field in class:BasicClientCookie2
84 public void setDiscard(boolean discard) {
85 this.discard = discard;
90 return !this.discard && super.isPersistent();
95 return this.discard || super.isExpired(date);
  /external/mesa3d/src/compiler/glsl/
lower_discard.cpp 29 * Case 1: The "then" branch contains a conditional discard:
34 * discard cond2;
50 * discard temp;
52 * Case 2: The "else" branch contains a conditional discard:
59 * discard cond2;
73 * discard temp;
75 * Case 3: Both branches contain a conditional discard:
80 * discard cond2;
84 * discard cond3;
100 * discard temp
194 ir_discard *discard = then_discard != NULL ? then_discard : else_discard; local
    [all...]
  /device/google/contexthub/firmware/os/core/
simpleQ.c 81 SimpleQueueForciblyDiscardCbkF discard = sq->discardCbk; local
87 discard(cur->data, true);
116 //if this is called, we need to discard at least one entry. we prefer to discard the oldest item
128 //try to discard it
  /prebuilts/go/darwin-x86/src/archive/tar/
reader.go 69 // Discard the remainder of the file and any padding.
70 if err := discard(tr.r, tr.curr.PhysicalRemaining()); err != nil {
827 // discard skips n bytes in r, reporting an error if unable to do so.
828 func discard(r io.Reader, n int64) error { func
850 copySkipped, err := io.CopyN(ioutil.Discard, r, n-seekSkipped)
  /prebuilts/go/linux-x86/src/archive/tar/
reader.go 69 // Discard the remainder of the file and any padding.
70 if err := discard(tr.r, tr.curr.PhysicalRemaining()); err != nil {
827 // discard skips n bytes in r, reporting an error if unable to do so.
828 func discard(r io.Reader, n int64) error { func
850 copySkipped, err := io.CopyN(ioutil.Discard, r, n-seekSkipped)
  /external/brotli/java/org/brotli/wrapper/dec/
Decoder.java 93 void discard(int length) { method in class:Decoder
105 discard(limit);
  /external/skia/src/gpu/
GrRenderTargetOpList.cpp 107 // We would like to (at this level) only ever clear & discard. We would need
145 // TODO: at the very least, we want the stencil store op to always be discard (at this
190 void GrRenderTargetOpList::discard() { function in class:GrRenderTargetOpList
191 // Discard calls to in-progress opLists are ignored. Calls at the start update the
  /external/skqp/src/gpu/
GrRenderTargetOpList.cpp 107 // We would like to (at this level) only ever clear & discard. We would need
145 // TODO: at the very least, we want the stencil store op to always be discard (at this
190 void GrRenderTargetOpList::discard() { function in class:GrRenderTargetOpList
191 // Discard calls to in-progress opLists are ignored. Calls at the start update the
  /external/toolchain-utils/automation/clients/helper/
perforce.py 125 def discard(self, mapping): member in class:View
127 self._mappings.discard(mapping)
  /external/toybox/toys/posix/
grep.c 240 int discard = (after || TT.b); local
244 discard = 0;
246 if (discard && TT.b) {
256 } else discard = 0;
260 if (discard && mcount) bars = "--";
  /external/zlib/src/examples/
zran.c 256 unsigned char discard[WINSIZE]; local
303 strm.next_out = discard;
308 strm.next_out = discard;
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/transform/
transform.go 326 type discard struct{ NopResetter } type
328 func (discard) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
333 // Discard is a Transformer for which all Transform calls succeed
335 Discard Transformer = discard{}
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/transform/
transform.go 326 type discard struct{ NopResetter } type
328 func (discard) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
333 // Discard is a Transformer for which all Transform calls succeed
335 Discard Transformer = discard{}
  /toolchain/binutils/binutils-2.27/zlib/examples/
zran.c 256 unsigned char discard[WINSIZE]; local
303 strm.next_out = discard;
308 strm.next_out = discard;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
_weakrefset.py 44 self.data.discard(item)
54 discard = self.data.discard
56 discard(l.pop())
113 def discard(self, item): member in class:WeakSet
116 self.data.discard(ref(item))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
_weakrefset.py 44 self.data.discard(item)
54 discard = self.data.discard
56 discard(l.pop())
111 def discard(self, item): member in class:WeakSet
114 self.data.discard(ref(item))
sets.py 497 # Single-element mutations: add, remove, discard
525 def discard(self, element): member in class:Set

Completed in 466 milliseconds

1 2 3 4 5 6 7 8 91011>>