HomeSort by relevance Sort by last modified time
    Searched defs:new (Results 226 - 250 of 452) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/toybox/lib/
dirtree.c 107 struct dirtree *dirtree_handle_callback(struct dirtree *new,
112 if (!new) return 0;
114 flags = callback(new);
116 if (S_ISDIR(new->st.st_mode)) {
118 new->dirfd = openat(dirtree_parentfd(new), new->name, O_CLOEXEC);
119 flags = dirtree_recurse(new, callback, flags);
125 free(new);
126 new = NULL
138 struct dirtree *new, **ddt = &(node->child); local
    [all...]
  /external/toybox/scripts/
mkflags.c 27 char *n, *new, c; local
33 n = new = strdup(all);
36 *(new++) = *(all++);
45 else *(new++) = 1;
47 *new = 0;
65 struct flag *new = calloc(sizeof(struct flag), 1); local
67 new->command = ++string;
71 new->next = list->lopt;
72 list->lopt = new;
77 blank->lopt = new;
99 struct flag *new = calloc(sizeof(struct flag), 1); local
    [all...]
  /external/toybox/toys/pending/
last.c 46 struct arg_list *new = xmalloc(sizeof(struct arg_list)); local
48 new->arg = (char*)data;
49 new->next = *old;
50 *old = new;
119 * old/new system time when date changes it.
  /external/valgrind/memcheck/tests/vbit-test/
binary.c 39 vbits_t new = { .num_bits = v2.num_bits }; local
54 new.bits.u8 = (v1.bits.u8 & ~v2.bits.u8 & val2.u8) & 0xff;
57 new.bits.u16 = (v1.bits.u16 & ~v2.bits.u16 & val2.u16) & 0xffff;
60 new.bits.u32 = (v1.bits.u32 & ~v2.bits.u32 & val2.u32);
63 new.bits.u64 = (v1.bits.u64 & ~v2.bits.u64 & val2.u64);
68 return new;
  /hardware/intel/common/wrs_omxil_core/utils/src/
module.c 125 struct module *new, *existing; local
139 new = malloc(sizeof(*new));
140 if (!new) {
145 new->ref_count = 1;
146 new->priv = NULL;
147 new->next = NULL;
148 new->handle = NULL;
150 new->handle = dlopen(file, flag);
151 if (!(new->handle))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/default.allocator/allocator.members/
construct.pass.cpp 16 #include <new>
22 void* operator new(std::size_t s) throw(std::bad_alloc)
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_construct.h 84 #if defined (new)
85 # define _STLP_NEW_REDEFINE new
86 # undef new macro
91 new(__p) _T1();
119 new(__p) _Tp(__val);
139 new(__p) _T1(__val);
160 new(__p) _T1(_STLP_PRIV _AsMoveSource(__val));
183 # define new DEBUG_NEW macro
  /ndk/sources/host-tools/make-3.81/
ar.c 222 struct nameseq *new = (struct nameseq *) xmalloc (state->size);
223 new->name = concat (state->arname, mem, ")");
224 new->next = state->chain;
225 state->chain = new;
219 struct nameseq *new = (struct nameseq *) xmalloc (state->size); local
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/smart_ptr/detail/
sp_counted_impl.hpp 88 void * operator new( std::size_t )
102 void * operator new( std::size_t )
158 void * operator new( std::size_t )
172 void * operator new( std::size_t )
  /ndk/tests/device/test-stlport_shared-exception/jni/
delete2.cpp 14 void * operator new (size_t size)
24 // may use the customized new/delete in this file. We only save one copy of
25 // poitner in variable "saved", but because this testcase new and immediately
63 f1 (::new D);
64 f2 (::new D);
65 f3 (::new D);
new1_3.cpp 6 // egcs 2.92 performs cleanup for temporaries inside new expressions
7 // after the new is complete, not at the end of the full expression.
10 // the result should be "ctor, new, func, dtor". If the new operator throws
11 // the exception, then the result should be "ctor, new, dtor". If the
15 // In Clang, the new operator is called first. If no exception is raised,
16 // then the result should be "new, ctor, func, dtor". If the new operator
17 // throws the exception, then the result should be "new". If the constructor
19 // "new, ctor, delete"
    [all...]
  /ndk/tests/device/test-stlport_static-exception/jni/
delete2.cpp 14 void * operator new (size_t size)
24 // may use the customized new/delete in this file. We only save one copy of
25 // poitner in variable "saved", but because this testcase new and immediately
63 f1 (::new D);
64 f2 (::new D);
65 f3 (::new D);
new1_3.cpp 6 // egcs 2.92 performs cleanup for temporaries inside new expressions
7 // after the new is complete, not at the end of the full expression.
10 // the result should be "ctor, new, func, dtor". If the new operator throws
11 // the exception, then the result should be "ctor, new, dtor". If the
15 // In Clang, the new operator is called first. If no exception is raised,
16 // then the result should be "new, ctor, func, dtor". If the new operator
17 // throws the exception, then the result should be "new". If the constructor
19 // "new, ctor, delete"
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
stdunk.h 141 classname *new_ptr = new(pool_type, tag) classname(outer_unknown); \
161 Custom "new" and "delete" C++ operators
184 operator new (
192 operator new (
  /prebuilts/go/darwin-x86/src/html/template/
template.go 163 // Regardless, some new ones may have been defined.
171 tmpl = t.new(name)
181 // AddParseTree creates a new template with the name and parse tree
248 // New allocates a new HTML template with the given name.
249 func New(name string) *Template {
252 template.New(name),
262 // New allocates a new HTML template associated with the given one
265 func (t *Template) New(name string) *Template
272 func (t *Template) new(name string) *Template { func
    [all...]
  /prebuilts/go/darwin-x86/test/bench/shootout/
binary-tree.c 53 treeNode* new; local
55 new = (treeNode*)malloc(sizeof(treeNode));
57 new->left = left;
58 new->right = right;
59 new->item = item;
61 return new;
  /prebuilts/go/linux-x86/src/html/template/
template.go 163 // Regardless, some new ones may have been defined.
171 tmpl = t.new(name)
181 // AddParseTree creates a new template with the name and parse tree
248 // New allocates a new HTML template with the given name.
249 func New(name string) *Template {
252 template.New(name),
262 // New allocates a new HTML template associated with the given one
265 func (t *Template) New(name string) *Template
272 func (t *Template) new(name string) *Template { func
    [all...]
  /prebuilts/go/linux-x86/test/bench/shootout/
binary-tree.c 53 treeNode* new; local
55 new = (treeNode*)malloc(sizeof(treeNode));
57 new->left = left;
58 new->right = right;
59 new->item = item;
61 return new;
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_construct.h 84 #if defined (new)
85 # define _STLP_NEW_REDEFINE new
86 # undef new macro
91 new(__p) _T1();
119 new(__p) _Tp(__val);
139 new(__p) _T1(__val);
160 new(__p) _T1(_STLP_PRIV _AsMoveSource(__val));
183 # define new DEBUG_NEW macro
  /sdk/find_java2/FindJava2/
FindJava2.cpp 24 #define new DEBUG_NEW macro
  /external/clang/test/Analysis/Inputs/
system-header-simulator-cxx.h 198 storage.assignExternal(new _CharT[4]);
203 void* operator new(std::size_t, const std::nothrow_t&) throw();
204 void* operator new[](std::size_t, const std::nothrow_t&) throw();
208 void* operator new (std::size_t size, void* ptr) throw() { return ptr; };
209 void* operator new[] (std::size_t size, void* ptr) throw() { return ptr; };
  /external/clang/test/CodeGenCXX/
dllexport-members.cpp     [all...]
  /external/libcxx/test/support/
count_new.hpp 6 # include <new>
196 void* operator new(std::size_t s) throw(std::bad_alloc)
209 void* operator new[](std::size_t s) throw(std::bad_alloc)
212 return operator new(s);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
interaction_based.hpp 60 new ( ::boost::itest::location( BOOST_TEST_L(__FILE__), __LINE__ ) ) type_name
193 // ************** operator new overload ************** //
209 operator new( std::size_t s, ::boost::itest::location const& l )
224 operator new[]( std::size_t s, ::boost::itest::location const& l )
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
template.rb 16 @template_library ||= ANTLR3::Template::Group.new
40 self.class.template_library or ANTLR3::Template::Group.new
49 @templates.new( source, values )
69 when TokenSource then TokenRewriteStream.new( input, options )
72 TokenRewriteStream.new( lexer_class.new( input, options ), options )
96 lexer = Lexer.new( source, options )
97 parser = Parser.new( lexer, options )
109 input = ANTLR3::FileStream.new( group_file, options )
110 lexer = Lexer.new( input, options
115 def self.new( &block ) singleton method in class:ANTLR3.Template.Group
122 def new( source, values = {} ) method in class:ANTLR3.Template.Group
    [all...]

Completed in 1905 milliseconds

1 2 3 4 5 6 7 8 91011>>