/external/ipsec-tools/src/racoon/ |
isakmp_unity.c | 268 struct isakmp_data *new; local 282 new = (struct isakmp_data *)buffer->v; 283 new->type = attr->type; 284 new->lorv = htons(len); 286 network = (struct unity_network *)(new + 1); 311 * allocate new netentry and copy 312 * new splitnet network data
|
vendorid.c | 188 vchar_t vid, *new; local
|
policy.c | 292 struct secpolicy *new; local 294 new = racoon_calloc(1, sizeof(*new)); 295 if (new == NULL) 298 return new; 381 inssp(new) 382 struct secpolicy *new; 388 if (new->spidx.priority < p->spidx.priority) { 389 TAILQ_INSERT_BEFORE(p, new, chain); 395 TAILQ_INSERT_TAIL(&sptree, new, chain) 428 struct ipsecrequest *new; local [all...] |
sainfo.c | 166 struct sainfo *new; local 168 new = racoon_calloc(1, sizeof(*new)); 169 if (new == NULL) 172 new->lifetime = IPSECDOI_ATTR_SA_LD_SEC_DEFAULT; 173 new->lifebyte = IPSECDOI_ATTR_SA_LD_KB_MAX; 175 return new; 201 inssainfo(new) 202 struct sainfo *new; 204 LIST_INSERT_HEAD(&sitree, new, chain) 235 struct sainfoalg *new; local [all...] |
schedule.c | 124 * add new schedule to schedule table. 133 struct sched *new; local 135 new = (struct sched *)racoon_malloc(sizeof(*new)); 136 if (new == NULL) 139 memset(new, 0, sizeof(*new)); 140 new->func = func; 141 new->param = param; 143 new->id = id++ 232 caddr_t new; local [all...] |
/external/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)
|
/external/libnl/lib/ |
object.c | 38 * Allocate a new object of kind specified by the operations handle 40 * @return The new object or NULL 44 struct nl_object *new; local 46 if (ops->oo_size < sizeof(*new)) 49 new = calloc(1, ops->oo_size); 50 if (!new) 53 new->ce_refcnt = 1; 54 nl_init_list_head(&new->ce_list); 56 new->ce_ops = ops; 58 ops->oo_constructor(new); 96 struct nl_object *new; local [all...] |
/external/mesa3d/src/glsl/ |
glsl_symbol_table.cpp | 29 /* Callers of this ralloc-based new need not call delete. It's 31 static void* operator new(size_t size, void *ctx) 97 /* If not declared at this scope, add a new entry. But if an existing 99 * the new variable declaration would shadow the function. 101 symbol_table_entry *entry = new(mem_ctx) symbol_table_entry(v); 113 symbol_table_entry *entry = new(mem_ctx) symbol_table_entry(v); 119 symbol_table_entry *entry = new(mem_ctx) symbol_table_entry(t); 133 symbol_table_entry *entry = new(mem_ctx) symbol_table_entry(f); 139 symbol_table_entry *entry = new(mem_ctx) symbol_table_entry(u); 145 symbol_table_entry *entry = new(mem_ctx) symbol_table_entry(f) [all...] |
ir_function_detect_recursion.cpp | 143 /* Callers of this ralloc-based new need not call delete. It's 145 static void* operator new(size_t size, void *ctx) 192 f = new(mem_ctx) function(sig); 225 call_node *node = new(mem_ctx) call_node; 231 node = new(mem_ctx) call_node;
|
/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...] |
/art/compiler/utils/ |
arena_bit_vector.h | 61 static void* operator new(size_t size, ArenaAllocator* arena) { 64 static void* operator new(size_t size, ScopedArenaAllocator* arena) {
|
/bionic/libc/bionic/ |
semaphore.c | 163 unsigned int old, new; local 172 new = SEMCOUNT_DECREMENT(old); 175 (int)(new|shared), 187 unsigned int old, new; local 196 new = SEMCOUNT_DECREMENT(old); 199 (int)(new|shared), 217 unsigned int old, new; local 231 new = SEMCOUNT_ONE; 233 new = SEMCOUNT_INCREMENT(old); 236 (int)(new|shared) [all...] |
/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...] |
/external/chromium_org/courgette/ |
memory_monitor.cc | 116 void* operator new(size_t s) {
|
/external/chromium_org/third_party/WebKit/Source/ |
config.h | 134 // Helps us catch if anyone uses new or delete by accident in code and doesn't include "config.h". 135 #undef new macro
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
StylePropertySet.h | 164 void* operator new(std::size_t, void* location)
|
/external/chromium_org/third_party/libsrtp/srtp/crypto/kernel/ |
crypto_kernel.c | 344 /* set head of list to new cipher type */ 414 /* set head of list to new auth type */ 520 kernel_debug_module_t *kdm, *new; local 536 new = (kernel_debug_module_t *)crypto_alloc(sizeof(kernel_debug_module_t)); 537 if (new == NULL) 541 new->mod = new_dm; 542 new->next = crypto_kernel.debug_module_list; 544 /* set head of list to new cipher type */ 545 crypto_kernel.debug_module_list = new;
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
ir_function_detect_recursion.cpp | 143 /* Callers of this ralloc-based new need not call delete. It's 145 static void* operator new(size_t size, void *ctx) 192 f = new(mem_ctx) function(sig); 225 call_node *node = new(mem_ctx) call_node; 231 node = new(mem_ctx) call_node;
|
loop_analysis.h | 144 static void* operator new(size_t size, void *ctx)
|
/external/chromium_org/third_party/skia/tools/lua/ |
skia.lua | 23 function Sk.Rect.new(l, t, r, b)
|
/external/chromium_org/tools/emacs/ |
trybot.el | 96 (defun trybot-get-new-buffer () 97 "Get a new clean buffer for trybot output." 126 (buffer (trybot-get-new-buffer))
|
/external/libsepol/src/ |
ebitmap.c | 20 ebitmap_node_t *n1, *n2, *new, *prev; local 28 new = (ebitmap_node_t *) malloc(sizeof(ebitmap_node_t)); 29 if (!new) { 33 memset(new, 0, sizeof(ebitmap_node_t)); 35 new->startbit = n1->startbit; 36 new->map = n1->map | n2->map; 40 new->startbit = n1->startbit; 41 new->map = n1->map; 44 new->startbit = n2->startbit; 45 new->map = n2->map 173 ebitmap_node_t *n, *new, *prev; local 250 ebitmap_node_t *n, *prev, *new; local [all...] |
users.c | 122 int new = 0; local 148 /* Otherwise, create a new one */ 154 new = 1; 226 /* If there are no errors, and this is a new user, add the user to policy */ 227 if (new) { 280 if (new && usrdatum) {
|
/external/libsepol/tests/ |
test-common.c | 188 unsigned int i, j, new, found = 0; local 203 new = 0; 207 new = 1; 210 if (new == 0) { 213 CU_ASSERT(new == 1); 229 int j, new, found = 0; local 246 new = 0; 250 new = 1; 253 if (new == 0) { 256 CU_ASSERT(new == 1) [all...] |