Searched refs:new (Results 26 - 50 of 1623) sorted by relevance

1234567891011>>

/external/ipsec-tools/src/racoon/
H A Dremoteconf.c91 * If matching anonymous entry, then new entry is copied from anonymous entry.
171 struct remoteconf *new; local
174 new = racoon_calloc(1, sizeof(*new));
175 if (new == NULL)
178 new->proposal = NULL;
181 new->doitype = IPSEC_DOI;
182 new->sittype = IPSECDOI_SIT_IDENTITY_ONLY;
183 new->idvtype = IDTYPE_UNDEFINED;
184 new
231 struct remoteconf *new, *old; local
271 struct remoteconf *new; local
337 struct etypes *new; local
438 struct isakmpsa *new; local
625 struct idspec *new; local
[all...]
H A Dstr2val.c55 caddr_t new; local
59 if ((new = racoon_malloc(len)) == 0) return(0);
62 snprintf(&new[j], len - j, "%02x", (u_char)buf[i]);
65 new[j++] = ' ';
66 new[j] = '\0';
69 new[j] = '\0';
71 return(new);
/external/llvm/include/llvm/
H A DLinkAllVMCore.h46 (void)new llvm::Module("", llvm::getGlobalContext());
47 (void)new llvm::UnreachableInst(llvm::getGlobalContext());
/external/webkit/Tools/android/flex-2.5.4a/MISC/
H A DtestxxLexer.l54 FlexLexer* lexer = new yyFlexLexer;
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
H A Dnuances.rb28 lexer = EmptyAlt::Lexer.new( 'foo' )
29 parser = EmptyAlt::Parser.new lexer
58 lexer = Subrule::Lexer.new( 'BEGIN A END' )
59 parser = Subrule::Parser.new lexer
95 lexer = SpecialStates::Lexer.new 'foo'
96 parser = SpecialStates::Parser.new lexer
101 lexer = SpecialStates::Lexer.new 'foo name1'
102 parser = SpecialStates::Parser.new lexer
107 lexer = SpecialStates::Lexer.new 'bar name1'
108 parser = SpecialStates::Parser.new lexe
[all...]
H A Dscopes.rb30 lexer = SimpleScope::Lexer.new( 'foobar' )
31 parser = SimpleScope::Parser.new lexer
90 $c::symbols = Set.new;
114 $d::symbols = Set.new
178 lexer = LotsaScopes::Lexer.new( "foobar" )
179 parser = LotsaScopes::Parser.new lexer
184 lexer = LotsaScopes::Lexer.new( "foobar" )
185 parser = LotsaScopes::Parser.new lexer
190 lexer = LotsaScopes::Lexer.new( "foobar" )
191 parser = LotsaScopes::Parser.new lexe
[all...]
/external/tcpdump/
H A Dmakemib179 # add a new object to the tree
181 # new OBJECT IDENTIFIER ::= { parent value }
184 function oidadd(new, parent, value) {
189 print "/* oidadd" inn(FILENAME) ":", new, "in", parent, "as", value, "line", $0, "*/"
191 gsub(/[-&\/]/,"",new)
196 inn(FILENAME), parent, new, value
200 if (oid[new] > 0 && oid[new] != value) {
202 inn(FILENAME), parent, new, value, oid[new]
[all...]
/external/kernel-headers/original/asm-mips/
H A Dcmpxchg.h15 #define __cmpxchg_asm(ld, st, m, old, new) \
34 : "R" (*m), "Jr" (old), "Jr" (new) \
54 : "R" (*m), "Jr" (old), "Jr" (new) \
62 *m = new; \
75 #define __cmpxchg(ptr, old, new, barrier) \
79 __typeof__(*(ptr)) __new = (new); \
104 #define cmpxchg(ptr, old, new) __cmpxchg(ptr, old, new, smp_llsc_mb())
105 #define cmpxchg_local(ptr, old, new) __cmpxchg(ptr, old, new, )
[all...]
/external/webkit/Source/WebCore/xml/
H A DXPathGrammar.y142 $$ = new LocationPath;
162 $$ = new LocationPath;
187 $$ = new Step(Step::ChildAxis, *$1, *$2);
190 $$ = new Step(Step::ChildAxis, *$1);
205 $$ = new Step(Step::ChildAxis, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI), *$2);
208 $$ = new Step(Step::ChildAxis, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI));
216 $$ = new Step($1, *$2, *$3);
219 $$ = new Step($1, *$2);
234 $$ = new Step($1, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI), *$3);
237 $$ = new Ste
[all...]
/external/blktrace/btt/
H A Dlist.h50 * Insert a new entry between two known consecutive entries.
55 static inline void __list_add(struct list_head *new, argument
59 next->prev = new;
60 new->next = next;
61 new->prev = prev;
62 prev->next = new;
66 * list_add - add a new entry
67 * @new: new entry to be added
70 * Insert a new entr
73 list_add(struct list_head *new, struct list_head *head) argument
86 list_add_tail(struct list_head *new, struct list_head *head) argument
223 list_replace(struct list_head *old, struct list_head *new) argument
232 list_replace_init(struct list_head *old, struct list_head *new) argument
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dkernel-list.h32 * Insert a new entry between two known consecutive entries.
37 static __inline__ void __list_add(struct list_head * new, argument
41 next->prev = new;
42 new->next = next;
43 new->prev = prev;
44 prev->next = new;
48 * Insert a new entry after the specified head..
50 static __inline__ void list_add(struct list_head *new, struct list_head *head) argument
52 __list_add(new, head, head->next);
56 * Insert a new entr
58 list_add_tail(struct list_head *new, struct list_head *head) argument
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/modes/
H A Dast-builder.rb19 AST::CommonTreeAdaptor.new( token_class )
29 AST::RewriteRuleSubtreeStream.new( @adaptor, desc, element )
33 AST::RewriteRuleTokenStream.new( @adaptor, desc, element )
37 AST::RewriteRuleNodeStream.new( @adaptor, desc, element )
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_placement_new.h13 // The file provides 'placement new'.
29 inline void *operator new(__sanitizer::operator_new_ptr_type sz, void *p) {
/external/tcpdump/tests/
H A Dmpls-ldp-hello.sh6 ../tcpdump -t -n -v -r mpls-ldp-hello.pcap >mpls-ldp-hello.new
7 if diff mpls-ldp-hello.new mpls-ldp-hello.out
/external/qemu/distrib/sdl-1.2.15/build-scripts/
H A Dmakedep.sh40 :>${output}.new
45 echo "\$(objects)/$obj: $src \\" >>${output}.new
49 search_deps $src | sort | uniq >>${output}.new
52 c) cat >>${output}.new <<__EOF__
58 cc) cat >>${output}.new <<__EOF__
64 m) cat >>${output}.new <<__EOF__
70 asm) cat >>${output}.new <<__EOF__
76 S) cat >>${output}.new <<__EOF__
82 rc) cat >>${output}.new <<__EOF__
90 echo "" >>${output}.new
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
H A Dcall-stack.rb5 Call = Struct.new( :file, :line, :method )
13 return Call.new( file, line )
18 return Call.new( file, line, method )
/external/dhcpcd/
H A Dif-pref.c48 if (si->state->new && !ti->state->new)
50 if (!si->state->new && ti->state->new)
54 if (si->state->new && ti->state->new) {
55 sill = (si->state->new->cookie == htonl(MAGIC_COOKIE));
56 till = (ti->state->new->cookie == htonl(MAGIC_COOKIE));
87 /* Are we the new head? */
/external/stlport/stlport/stl/
H A D_new.h25 // new.h uses ::malloc ;(
31 // eMbedded Visual C++ .NET unfortunately uses _INC_NEW for both <new.h> and <new>
32 // we undefine the symbol to get the stuff in the SDK's <new>
37 # if defined (new)
38 /* STLport cannot replace native Std library new header if new is a macro,
39 * please define new macro after <new> header inclusion.
41 # error Cannot include native new heade
[all...]
/external/webkit/Source/WebCore/fileapi/
H A DMetadata.h44 return adoptRef(new Metadata(modificationTime));
49 return adoptRef(new Metadata(metadata->m_modificationTime));
/external/webkit/Source/WebCore/storage/
H A DLocalStorageTask.h48 static PassOwnPtr<LocalStorageTask> createImport(StorageAreaSync* area) { return adoptPtr(new LocalStorageTask(AreaImport, area)); }
49 static PassOwnPtr<LocalStorageTask> createSync(StorageAreaSync* area) { return adoptPtr(new LocalStorageTask(AreaSync, area)); }
50 static PassOwnPtr<LocalStorageTask> createDeleteEmptyDatabase(StorageAreaSync* area) { return adoptPtr(new LocalStorageTask(DeleteEmptyDatabase, area)); }
51 static PassOwnPtr<LocalStorageTask> createOriginIdentifiersImport() { return adoptPtr(new LocalStorageTask(ImportOrigins)); }
52 static PassOwnPtr<LocalStorageTask> createSetOriginDetails(const String& originIdentifier, const String& databaseFilename) { return adoptPtr(new LocalStorageTask(SetOriginDetails, originIdentifier, databaseFilename)); }
53 static PassOwnPtr<LocalStorageTask> createDeleteOrigin(const String& originIdentifier) { return adoptPtr(new LocalStorageTask(DeleteOrigin, originIdentifier)); }
54 static PassOwnPtr<LocalStorageTask> createDeleteAllOrigins() { return adoptPtr(new LocalStorageTask(DeleteAllOrigins)); }
55 static PassOwnPtr<LocalStorageTask> createTerminate(LocalStorageThread* thread) { return adoptPtr(new LocalStorageTask(TerminateThread, thread)); }
/external/icu4c/tools/tzcode/
H A Dialloc.c46 icatalloc(old, new)
48 const char * const new;
53 newsize = (new == NULL) ? 0 : strlen(new);
60 if (new != NULL)
61 (void) strcpy(result + oldsize, new);
/external/valgrind/main/none/tests/s390x/
H A Dlpr.c4 int lpr(int org, int *new) argument
13 *new = _new;
17 int lpgr(unsigned long org, unsigned long *new) argument
27 *new = _new;
31 int lpgfr(unsigned long org, unsigned long *new) argument
41 *new = _new;
52 printf("new: %d cc: %d\n", n, cc);
62 printf("new: %ld cc: %d\n", n, cc);
72 printf("new: %ld cc: %d\n", n, cc);
/external/openfst/src/include/fst/script/
H A Dmap.h33 VectorFst<ToArc> *ofst = new VectorFst<ToArc>;
42 VectorFst<ToArc> *ofst = new VectorFst<ToArc>;
63 args->retval = new FstClass(
66 args->retval = new FstClass(
69 args->retval = new FstClass(
72 args->retval = new FstClass(
75 args->retval = new FstClass(
78 args->retval = new FstClass(
81 args->retval = new FstClass(
84 args->retval = new FstClas
[all...]
/external/skia/bench/
H A Dbench_compare.py14 print '-n <file> the new bench output file.'
22 print ' n: new time'
30 def __init__(self, old, new):
32 self.new = new
33 self.diff = old.time - new.time
41 str(self.new),
75 new = None
85 new = value
94 if old is None or new i
[all...]
/external/kernel-headers/original/asm-x86/
H A Dcmpxchg_32.h120 unsigned long new, int size)
127 : "q"(new), "m"(*__xg(ptr)), "0"(old)
133 : "r"(new), "m"(*__xg(ptr)), "0"(old)
139 : "r"(new), "m"(*__xg(ptr)), "0"(old)
153 unsigned long new, int size)
160 : "q"(new), "m"(*__xg(ptr)), "0"(old)
166 : "r"(new), "m"(*__xg(ptr)), "0"(old)
172 : "r"(new), "m"(*__xg(ptr)), "0"(old)
180 unsigned long old, unsigned long new, int size)
187 : "q"(new), "
119 __cmpxchg(volatile void *ptr, unsigned long old, unsigned long new, int size) argument
151 __sync_cmpxchg(volatile void *ptr, unsigned long old, unsigned long new, int size) argument
179 __cmpxchg_local(volatile void *ptr, unsigned long old, unsigned long new, int size) argument
217 cmpxchg_386(volatile void *ptr, unsigned long old, unsigned long new, int size) argument
255 __cmpxchg64(volatile void *ptr, unsigned long long old, unsigned long long new) argument
269 __cmpxchg64_local(volatile void *ptr, unsigned long long old, unsigned long long new) argument
[all...]

Completed in 514 milliseconds

1234567891011>>