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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/tasm/tests/
dup.asm 1 a db 10 dup(1)
res.asm 2 b db 2 dup (?)
  /external/bison/lib/
unistd--.h 23 #undef dup macro
24 #define dup dup_safer macro
  /bionic/libc/arch-mips/syscalls/
dup.S 4 .globl dup
6 .ent dup
8 dup: label
22 .end dup
  /bionic/libc/arch-arm/syscalls/
dup.S 6 ENTRY(dup) function
15 END(dup)
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_memory.h 73 void *dup = MALLOC(size); local
74 if (dup)
75 memcpy(dup, src, size);
76 return dup;
  /external/mesa3d/src/gallium/auxiliary/util/
u_memory.h 73 void *dup = MALLOC(size); local
74 if (dup)
75 memcpy(dup, src, size);
76 return dup;
  /external/valgrind/main/none/tests/
fdleak_dup.c 12 DO( dup(s) );
  /bionic/libc/arch-x86/syscalls/
dup.S 6 ENTRY(dup) function
21 END(dup)
  /external/mdnsresponder/mDNSShared/
dnsextd_lexer.l 40 char * dup;
42 dup = strdup( string + 1);
44 dup[ strlen( dup ) - 1 ] = '\0';
46 return dup;
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
RewriteRuleNodeStream.as 21 protected override function dup(el:Object):Object {
22 // we dup every node, so don't have to worry about calling dup; short-
24 throw new Error("dup can't be called for a node stream.");
RewriteRuleSubtreeStream.as 40 * must dup the type node, but ID has been added.
42 * Referencing a rule result twice is ok; dup entire tree as
46 * a proper way to refactor. This needs to always call dup node
47 * and super.next() doesn't know which to call: dup node or dup tree.
53 // if out of elements and size is 1, dup (at most a single node
63 protected override function dup(el:Object):Object {
RewriteRuleTokenStream.as 55 protected override function dup(el:Object):Object {
56 throw new Error("dup can't be called for a token stream.");
  /external/stlport/test/eh/
LeakCheck.h 72 Value dup = v; local
77 op( dup );
84 CheckInvariant(dup);
153 Value dup = v; local
159 op( dup );
166 bool unchanged = (dup == v);
174 EH_STD::copy(dup.begin(), dup.end(), o);
  /frameworks/compile/libbcc/include/bcc/Support/
OutputFile.h 38 // This is similar to the system call dup(). It creates a copy of the file
42 llvm::raw_fd_ostream *dup();
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
RewriteRuleSubtreeStream.js 12 * must dup the type node, but ID has been added.
14 * Referencing a rule result twice is ok; dup entire tree as
18 * a proper way to refactor. This needs to always call dup node
19 * and super.next() doesn't know which to call: dup node or dup tree.
25 // if out of elements and size is 1, dup (at most a single node
35 dup: function(el) {
RewriteRuleNodeStream.js 19 dup: function() {
20 // we dup every node, so don't have to worry about calling dup; short-
22 throw new Error("dup can't be called for a node stream.");
RewriteRuleTokenStream.js 25 dup: function(el) {
26 throw new Error("dup can't be called for a token stream.");
  /external/chromium_org/tools/clang/scripts/
update.py 25 # dup()ed sys.stdin is writable, try
26 # fd2 = os.dup(sys.stdin.fileno()); os.write(fd2, 'hi')
30 stderr=os.fdopen(os.dup(sys.stdin.fileno())))
  /external/chromium_org/third_party/icu/source/common/
cstring.c 304 char *dup = (char *) uprv_malloc(len); local
306 if (dup) {
307 uprv_memcpy(dup, src, len);
310 return dup;
315 char *dup; local
318 dup = uprv_strdup(src);
320 dup = (char*)uprv_malloc(n+1);
321 if (dup) {
322 uprv_memcpy(dup, src, n);
323 dup[n] = 0
    [all...]
  /external/icu4c/common/
cstring.c 315 char *dup = (char *) uprv_malloc(len); local
317 if (dup) {
318 uprv_memcpy(dup, src, len);
321 return dup;
326 char *dup; local
329 dup = uprv_strdup(src);
331 dup = (char*)uprv_malloc(n+1);
332 if (dup) {
333 uprv_memcpy(dup, src, n);
334 dup[n] = 0
    [all...]
  /external/clang/www/
make_cxx_dr_status 119 dup = status.split(' ', 1)[1]
120 avail = 'Superseded by %s' % dup
122 _, avail_style = availability(int(dup))
124 print >>sys.stderr, "issue %s marked as sup %s" % (issue, dup)
126 elif status.startswith('dup '):
127 dup = int(status.split(' ', 1)[1])
128 avail = 'Duplicate of %s' % dup
129 _, avail_style = availability(dup)
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
RewriteRuleNodeStream.java 65 protected Object dup(Object el) { method in class:RewriteRuleNodeStream
66 // we dup every node, so don't have to worry about calling dup; short-
68 throw new UnsupportedOperationException("dup can't be called for a node stream.");
  /external/chromium_org/content/common/
sandbox_util.cc 30 // dup()ing and close()ing.
34 // the other process from the I/O thread. Without the dup, calling code might
37 int fd = should_close_source ? handle : ::dup(handle);
  /external/chromium_org/ipc/
ipc_platform_file.cc 33 // dup()ing and close()ing.
37 // the other process from the I/O thread. Without the dup, calling code might
40 int fd = close_source_handle ? handle : ::dup(handle);

Completed in 351 milliseconds

1 2 3 4 5 6 7 8 91011>>