HomeSort by relevance Sort by last modified time
    Searched defs:discard (Results 1 - 25 of 207) 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/skia/src/gpu/
GrRenderTarget.cpp 17 void GrRenderTarget::discard() { function in class:GrRenderTarget
GrInOrderDrawBuffer.cpp 90 void GrInOrderDrawBuffer::discard(GrRenderTarget* renderTarget) { function in class:GrInOrderDrawBuffer
  /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/boringssl/src/ssl/
ssl_aead_ctx.c 35 size_t discard; local
36 if (!ssl_cipher_get_evp_aead(&aead, &discard, &discard, cipher, version)) {
d1_both.c 404 uint8_t discard[256]; local
406 size_t chunk = frag_len < sizeof(discard) ? frag_len : sizeof(discard);
407 int ret = dtls1_read_bytes(s, SSL3_RT_HANDSHAKE, discard, chunk, 0);
  /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/zlib/src/examples/
zran.c 256 unsigned char discard[WINSIZE]; local
303 strm.next_out = discard;
308 strm.next_out = discard;
  /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/src/tools/perf/util/
config.c 334 int discard; local
335 return !!perf_config_bool_or_int(name, value, &discard);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
Util.java 156 public static boolean discard(Source source, int timeout, TimeUnit timeUnit) { method in class:Util
  /external/openssh/
cipher.c 304 u_char *junk, *discard; local
359 (discard = malloc(cipher->discard_len)) == NULL) {
365 ret = EVP_Cipher(&cc->evp, discard, junk, cipher->discard_len);
366 explicit_bzero(discard, cipher->discard_len);
368 free(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
_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
_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)
  /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/deqp/modules/glshared/
glsShaderRenderCase.hpp 166 inline void discard (void) { isDiscarded = true; } function in class:deqp::gls::ShaderEvalContext
  /bionic/libc/kernel/uapi/drm/
savage_drm.h 82 int discard; member in struct:drm_savage_cmdbuf
  /external/jdiff/src/jdiff/
DiffMyers.java 335 /** Discard lines from one file that have no matches in the other file.
532 /** Discard lines that have no matches in another file.
541 When we discard a line, we also mark it as a deletion or insertion
550 /* Don't really discard the provisional lines except when they occur
555 /* Actually discard the lines. */
556 discard(discarded);
593 /** Don't really discard the provisional lines except when they occur
607 /* We have found a nonprovisional discard. */
706 /** Actually discard the lines.
709 private void discard(final byte[] discards) method in class:DiffMyers.file_data
    [all...]

Completed in 402 milliseconds

1 2 3 4 5 6 7 8 9