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

1 2 3 4 5 6

  /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/third_party/WebKit/Source/core/platform/graphics/chromium/test/
MockDiscardablePixelRef.h 38 void discard() function in class:WebCore::MockDiscardablePixelRef
  /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_dx11/src/libGLESv2/renderer/
IndexBuffer11.cpp 141 bool IndexBuffer11::discard() function in class:rx::IndexBuffer11
IndexBuffer9.cpp 161 bool IndexBuffer9::discard() function in class:rx::IndexBuffer9
171 ERR("Discard lock failed with error 0x%08x", result);
178 ERR("Discard unlock failed with error 0x%08x", result);
IndexBuffer.cpp 104 bool IndexBufferInterface::discard() function in class:rx::IndexBufferInterface
106 return mIndexBuffer->discard();
141 if (!discard())
VertexBuffer.cpp 85 bool VertexBufferInterface::discard() function in class:rx::VertexBufferInterface
87 return mVertexBuffer->discard();
180 if (!discard())
VertexBuffer11.cpp 192 bool VertexBuffer11::discard() function in class:rx::VertexBuffer11
VertexBuffer9.cpp 207 bool VertexBuffer9::discard() function in class:rx::VertexBuffer9
217 ERR("Discard lock failed with error 0x%08x", result);
224 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/tlslite/tlslite/utils/
compat.py 24 def discard(self, e): member in class:Set
jython_compat.py 117 def discard(self, e): member in class:Set
  /external/zlib/src/examples/
zran.c 256 unsigned char discard[WINSIZE]; local
303 strm.next_out = discard;
308 strm.next_out = discard;
  /external/linux-tools-perf/util/
config.c 331 int discard; local
332 return !!perf_config_bool_or_int(name, value, &discard);
  /external/openssh/
cipher.c 217 u_char *junk, *discard; local
268 discard = xmalloc(cipher->discard_len);
269 if (EVP_Cipher(&cc->evp, discard, junk,
271 fatal("evp_crypt: EVP_Cipher failed during discard");
272 memset(discard, 0, cipher->discard_len);
274 xfree(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
_abcoll.py 268 add(), and discard().
281 def discard(self, value): member in class:MutableSet
289 self.discard(value)
298 self.discard(value)
316 self.discard(value)
327 self.discard(value)
337 self.discard(value)
  /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))
sets.py 497 # Single-element mutations: add, remove, discard
525 def discard(self, element): member in class:Set
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3tokenstream.c 44 static void discardOffChannel (pANTLR3_COMMON_TOKEN_STREAM cts, ANTLR3_BOOLEAN discard);
694 discardOffChannel (pANTLR3_COMMON_TOKEN_STREAM tokenStream, ANTLR3_BOOLEAN discard)
696 tokenStream->discardOffChannel = discard;
953 ANTLR3_BOOLEAN discard; local
968 discard = ANTLR3_FALSE; /* Assume we are not discarding */
971 * store a pointer to a structure in the override map and discard set
979 discard = ANTLR3_TRUE;
985 discard = ANTLR3_TRUE;
1003 if (discard == ANTLR3_FALSE)
  /external/chromium_org/third_party/bintrees/bintrees/
treemixin.py 60 * discard(k) -> None, remove k from T, if k is present, O(log(n))
191 def discard(self, key): member in class:TreeMixin
192 """ x.discard(k) -> None, remove k from T, if k is present """

Completed in 295 milliseconds

1 2 3 4 5 6