Searched refs:new (Results 1 - 25 of 1611) sorted by relevance

1234567891011>>

/external/clang/test/SemaCXX/Inputs/
H A Dwarn-new-overaligned-3.h3 // This header file pretends to be <new> from the system library, for the
6 void* operator new(unsigned long) {
9 void* operator new[](unsigned long) {
13 void* operator new(unsigned long, void *) {
17 void* operator new[](unsigned long, void *) {
/external/valgrind/main/drd/tests/
H A Dtc08_hbl2.stdout.exp1 child: new value 6
2 child: new value 10
/external/valgrind/main/helgrind/tests/
H A Dtc08_hbl2.stdout.exp1 child: new value 6
2 child: new value 10
/external/webkit/Source/WebKit2/
H A DWebKit2Prefix.h32 #define new ("if you use new/delete make sure to include config.h at the top of the file"()) macro
33 #define delete ("if you use new/delete make sure to include config.h at the top of the file"())
/external/tcpdump/tests/
H A Deapon1.sh6 ../tcpdump -t -N -r eapon1.pcap > eapon1.new
7 if diff eapon1.new eapon1.out
H A Desp1.sh6 ../tcpdump -t -n -E "0x12345678@192.1.2.45 3des-cbc-hmac96:0x4043434545464649494a4a4c4c4f4f515152525454575758" -r 02-sunrise-sunset-esp.pcap >esp1.new
7 if diff esp1.new esp1.out
H A Desp2.sh6 ../tcpdump -t -n -E "0x12345678@192.1.2.45 3des-cbc-hmac96:0x43434545464649494a4a4c4c4f4f51515252545457575840,0xabcdabcd@192.0.1.1 3des-cbc-hmac96:0x434545464649494a4a4c4c4f4f5151525254545757584043" -r 08-sunrise-sunset-esp2.pcap >esp2.new
7 if diff esp2.new esp2.out
H A Desp3.sh5 ../tcpdump -t -n -E "3des-cbc-hmac96:0x4043434545464649494a4a4c4c4f4f515152525454575758" -r 02-sunrise-sunset-esp.pcap >esp3.new
6 if diff esp3.new esp1.out
H A Desp4.sh6 ../tcpdump -t -n -E "file esp-secrets.txt" -r 08-sunrise-sunset-esp2.pcap >esp4.new
7 if diff esp4.new esp2.out
H A Desp5.sh6 ../tcpdump -t -n -E "file esp-secrets.txt" -r 08-sunrise-sunset-aes.pcap > esp5.new
7 if diff esp5.new esp5.out
H A Despudp1.sh6 ../tcpdump -t -n -E "file esp-secrets.txt" -r espudp1.pcap >espudp1.new
7 if diff espudp1.new espudp1.out
H A Disakmp3.sh6 ../tcpdump -t -v -n -r isakmp-identification-segfault.pcap > isakmp3.new
7 if diff isakmp3.new isakmp3.out
H A Disakmp4.sh6 ../tcpdump -t -n -E "file esp-secrets.txt" -r isakmp4500.pcap >isakmp4.new
7 if diff isakmp4.new isakmp4.out
H A Dlmp.sh6 ../tcpdump -t -n -v -r lmp.pcap >lmp.new
7 if diff lmp.new lmp.out
H A Dospf-gmpls.sh6 ../tcpdump -t -n -v -r ospf-gmpls.pcap > ospf-gmpls.new
7 if diff ospf-gmpls.new ospf-gmpls.out
/external/stlport/stlport/
H A Dnew.h25 # include <new>
27 # include_next <new.h>
29 # include _STLP_NATIVE_OLD_STREAMS_HEADER(new.h)
32 # include _STLP_NATIVE_OLD_STREAMS_HEADER(new.h)
34 # include _STLP_NATIVE_CPP_RUNTIME_HEADER(new.h)
/external/tcpdump/
H A Dsetsignal.c77 struct sigaction old, new; local
79 memset(&new, 0, sizeof(new));
80 new.sa_handler = func;
81 if (sigaction(sig, &new, &old) < 0)
/external/llvm/lib/Target/NVPTX/
H A DNVPTXTargetObjectFile.h49 TextSection = new NVPTXSection(MCSection::SV_ELF,
51 DataSection = new NVPTXSection(MCSection::SV_ELF,
53 BSSSection = new NVPTXSection(MCSection::SV_ELF,
55 ReadOnlySection = new NVPTXSection(MCSection::SV_ELF,
58 StaticCtorSection = new NVPTXSection(MCSection::SV_ELF,
60 StaticDtorSection = new NVPTXSection(MCSection::SV_ELF,
62 LSDASection = new NVPTXSection(MCSection::SV_ELF,
64 EHFrameSection = new NVPTXSection(MCSection::SV_ELF,
66 DwarfAbbrevSection = new NVPTXSection(MCSection::SV_ELF,
68 DwarfInfoSection = new NVPTXSectio
[all...]
/external/dnsmasq/contrib/slackware-dnsmasq/
H A Ddoinst.sh.gz
/external/bison/lib/
H A Dstrdup.c44 void *new = malloc (len); local
46 if (new == NULL)
49 return (char *) memcpy (new, s, len);
H A Dstrndup.c53 char *new = malloc (len + 1); local
55 if (new == NULL)
58 new[len] = '\0';
59 return memcpy (new, s, len);
/external/valgrind/main/tests/
H A Dfilter_libc21 s/(at.*)__builtin_new/$1...operator new.../;
22 s/(at.*)operator new\(unsigned(| int| long)\)/$1...operator new.../;
24 s/(at.*)__builtin_vec_new/$1...operator new.../;
25 s/(at.*)operator new\[\]\(unsigned(| int| long)\)/$1...operator new[].../;
/external/antlr/antlr-3.4/runtime/Ruby/test/unit/
H A Dtest-scope.rb10 @A = ANTLR3::Scope.new( :a, :b )
11 @B = ANTLR3::Scope.new( 'count = 3' )
12 @C = ANTLR3::Scope.new( 'a', 'b = 0', 'c = {}' )
22 @A.new.to_a.should == [ nil, nil ]
23 @B.new.to_a.should == [ 3 ]
24 @C.new.to_a.should == [ nil, 0, {} ]
28 c = @C.new( Object )
35 b = @B.new( 7000 )
40 a = @A.new( "apple", :orange )
/external/grub/docs/
H A Dsrc2texi15 ${dir}/${src} | expand > ${texi}.new
16 mv -f ${texi}.new ${dir}/${texi}
/external/dnsmasq/src/
H A Doption.c668 struct dhcp_opt *new = opt_malloc(sizeof(struct dhcp_opt)); local
675 new->len = 0;
676 new->flags = flags;
677 new->netid = NULL;
678 new->val = NULL;
679 new->opt = 0;
691 new->opt = atoi(arg);
702 new->opt = opttab[i].val;
711 new->u.vendor_class = (unsigned char *)opt_string_alloc(arg+7);
712 new
1150 struct resolvc *new, *list = daemon->resolv_files; local
1180 struct mx_srv_record *new; local
1227 struct hostsfile *new = opt_malloc(sizeof(struct hostsfile)); local
1250 struct cond_domain *new = safe_malloc(sizeof(struct cond_domain)); local
1301 struct iname *new = opt_malloc(sizeof(struct iname)); local
1316 struct iname *new = opt_malloc(sizeof(struct iname)); local
1351 struct iname *new = opt_malloc(sizeof(struct iname)); local
1629 struct dhcp_bridge *new = opt_malloc(sizeof(struct dhcp_bridge)); local
1661 struct dhcp_context *new = opt_malloc(sizeof(struct dhcp_context)); local
1799 struct dhcp_config *new; local
1983 struct dhcp_boot *new = opt_malloc(sizeof(struct dhcp_boot)); local
1998 struct dhcp_opt *new = opt_malloc(sizeof(struct dhcp_opt)); local
2042 struct pxe_service *new = opt_malloc(sizeof(struct pxe_service)); local
2119 struct dhcp_mac *new = opt_malloc(sizeof(struct dhcp_mac)); local
2144 struct dhcp_vendor *new = opt_malloc(sizeof(struct dhcp_vendor)); local
2216 struct dhcp_netid_list *new = opt_malloc(sizeof(struct dhcp_netid_list)); local
2260 struct doctor *new = opt_malloc(sizeof(struct doctor)); local
2295 struct interface_name *new, **up; local
2316 struct cname *new; local
2344 struct ptr_record *new; local
2367 struct naptr *new; local
2401 struct txt_record *new; local
2466 struct mx_srv_record *new; local
[all...]

Completed in 516 milliseconds

1234567891011>>