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

1 2 3 4 5 6 7 8 9

  /external/aac/libFDK/include/arm/
cplx_mul.h 197 LONG discard; local
203 : "=&r"(tmp1), "=&r"(tmp2), "=&r"(discard)
fixmadd_arm.h 118 INT discard, result = x; local
120 : "=r" (discard), "+r" (result)
fixmul_arm.h 120 INT discard, result ; local
121 __asm__ ("smull %0, %1, %2, %3" : "=&r" (discard), "=r" (result)
  /external/chromium_org/tools/telemetry/telemetry/util/
path_set.py 39 def discard(self, path): member in class:PathSet
41 self._paths.discard(path)
44 self._paths.discard(os.path.join(root, basename))
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/test/
MockDiscardablePixelRef.h 45 void discard() function in class:WebCore::MockDiscardablePixelRef
  /external/chromium_org/third_party/skia/src/gpu/
GrRenderTarget.cpp 57 void GrRenderTarget::discard() { function in class:GrRenderTarget
  /external/skia/src/gpu/
GrRenderTarget.cpp 57 void GrRenderTarget::discard() { function in class:GrRenderTarget
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicClientCookie2.java 49 private boolean discard; field in class:BasicClientCookie2
79 public void setDiscard(boolean discard) {
80 this.discard = discard;
85 return !this.discard && super.isPersistent();
90 return this.discard || super.isExpired(date);
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d11/
IndexBuffer11.cpp 134 bool IndexBuffer11::discard() function in class:rx::IndexBuffer11
VertexBuffer11.cpp 193 bool VertexBuffer11::discard() function in class:rx::VertexBuffer11
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d9/
IndexBuffer9.cpp 153 bool IndexBuffer9::discard() function in class:rx::IndexBuffer9
163 ERR("Discard lock failed with error 0x%08x", result);
170 ERR("Discard unlock failed with error 0x%08x", result);
VertexBuffer9.cpp 167 bool VertexBuffer9::discard() function in class:rx::VertexBuffer9
177 ERR("Discard lock failed with error 0x%08x", result);
184 ERR("Discard unlock failed with error 0x%08x", result);
  /external/chromium_org/third_party/mesa/src/src/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
191 ir_discard *discard = then_discard != NULL ? then_discard : else_discard; local
    [all...]
  /external/mesa3d/src/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
191 ir_discard *discard = then_discard != NULL ? then_discard : else_discard; local
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
IndexBuffer.cpp 116 bool IndexBufferInterface::discard() function in class:rx::IndexBufferInterface
118 return mIndexBuffer->discard();
153 if (!discard())
VertexBuffer.cpp 87 bool VertexBufferInterface::discard() function in class:rx::VertexBufferInterface
89 return mVertexBuffer->discard();
211 if (!discard())
  /external/zlib/src/examples/
zran.c 256 unsigned char discard[WINSIZE]; local
303 strm.next_out = discard;
308 strm.next_out = discard;
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLConstructionSite.h 277 void discard() function in class:WebCore::FINAL::FINAL
  /external/chromium_org/tools/gyp/pylib/gyp/
common.py 497 def discard(self, key): member in class:OrderedSet
522 self.discard(key)
  /external/e2fsprogs/lib/ext2fs/
ext2_io.h 91 errcode_t (*discard)(io_channel channel, unsigned long long block, member in struct:struct_io_manager
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
config.c 334 int discard; local
335 return !!perf_config_bool_or_int(name, value, &discard);
  /libcore/luni/src/test/java/libcore/javax/crypto/
CipherInputStreamTest.java 109 int discard = 3; local
110 while (discard != 0) {
111 discard -= in.read(null, 0, discard);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_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
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_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))

Completed in 574 milliseconds

1 2 3 4 5 6 7 8 9