Searched defs:new (Results 226 - 250 of 333) sorted by relevance

1234567891011>>

/external/iptables/iptables/
H A Diptables-xml.c74 /* global new argv and argc */
540 unsigned int new = 0; local
544 while (new < newargc && old < oldargc) {
545 if (isTarget(oldargv[old]) && isTarget(newargv[new])) {
561 // break when old!=new
562 if (strcmp(oldargv[old], newargv[new]) != 0) {
568 new++;
718 DEBUGP("Creating new chain '%s'\n", chain);
/external/kmod/libkmod/
H A Dlibkmod-index.c86 * (indicated using a new flag).
316 struct index_file *new; local
335 new = NOFAIL(malloc(sizeof(struct index_file)));
336 new->file = file;
337 new->root_offset = read_long(new->file);
340 return new;
/external/libdrm/nouveau/
H A Dnouveau.c242 struct nvif_ioctl_new_v0 new; member in struct:__anon10554
259 args->new.version = 0;
260 args->new.route = NVIF_IOCTL_V0_ROUTE_NVIF;
261 args->new.token = (unsigned long)(void *)obj;
262 args->new.object = (unsigned long)(void *)obj;
263 args->new.handle = handle;
264 args->new.oclass = oclass;
265 memcpy(args->new.data, data, size);
267 memcpy(data, args->new.data, size);
358 * the new libdr
[all...]
/external/libexif/libexif/
H A Dexif-data.c450 * If we don't know the tag, don't fail. It could be that new
1112 ExifByteOrder old, new; member in struct:_ByteOrderChangeData
1123 exif_array_set_byte_order (e->format, e->data, e->components, d->old, d->new);
1141 d.new = order;
/external/libnl/lib/
H A Daddr.c176 * The new address object will be empty with a prefix length of 0 and will
463 * Allocates new abstract address representing an identical clone of an
473 struct nl_addr *new; local
475 new = nl_addr_build(addr->a_family, addr->a_addr, addr->a_len);
476 if (new)
477 new->a_prefixlen = addr->a_prefixlen;
479 return new;
/external/libnl/lib/route/
H A Drule.c326 * Allocates a new rule cache, initializes it properly and updates it
427 * Build netlink request message to add a new rule
428 * @arg tmpl template with data of new rule
432 * Builds a new netlink message requesting a addition of a new
435 * or supplemented as needed. \a tmpl must contain the attributes of the new
448 * Add a new rule
488 * Builds a new netlink message requesting a deletion of a rule.
607 struct nl_addr *new, int flag)
610 if (new
606 __assign_addr(struct rtnl_rule *rule, struct nl_addr **pos, struct nl_addr *new, int flag) argument
[all...]
/external/libunwind/include/
H A Dlibunwind_i.h122 cmpxchg_ptr (void *addr, void *old, void *new) argument
132 return AO_compare_and_swap(u.aop, (AO_t) old, (AO_t) new);
146 cmpxchg_ptr (void *addr, void *old, void *new) argument
156 return __sync_bool_compare_and_swap(u.vlp, (long) old, (long) new);
328 * unwinds. For example, if a new member is added, then the function
/external/llvm/include/llvm/IR/
H A DConstants.h50 void *operator new(size_t, unsigned) = delete;
61 void *operator new(size_t s) { return User::operator new(s, 0); }
589 /// Note that this has to compute a new constant to return, so it isn't as
652 void *operator new(size_t, unsigned) = delete;
659 void *operator new(size_t s) {
660 return User::operator new(s, 0);
710 void *operator new(size_t, unsigned) = delete;
717 void *operator new(size_t s) {
718 return User::operator new(
[all...]
/external/llvm/lib/IR/
H A DConstantsContext.h35 void *operator new(size_t, unsigned) = delete;
38 void *operator new(size_t s) {
39 return User::operator new(s, 1);
52 void *operator new(size_t, unsigned) = delete;
55 void *operator new(size_t s) {
56 return User::operator new(s, 2);
73 void *operator new(size_t, unsigned) = delete;
76 void *operator new(size_t s) {
77 return User::operator new(s, 3);
94 void *operator new(size_
[all...]
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_dataflow.c481 struct rc_reader * new; local
484 new = &data->Readers[data->ReaderCount++];
485 new->Inst = inst;
486 new->WriteMask = mask;
487 return new;
497 struct rc_reader * new = add_reader(pool, data, inst, mask); local
498 new->U.I.Src = src;
510 struct rc_reader * new = add_reader(pool, data, inst, mask); local
511 new->U.P.Src = src;
512 new
[all...]
/external/mesa3d/src/glx/
H A Ddrisw_glx.c270 drisw_unbind_context(struct glx_context *context, struct glx_context *new) argument
530 /* Create a new drawable */
769 * This is called from __glXInitialize() when we are given a new
H A Ddriwindows_glx.c103 driwindows_unbind_context(struct glx_context *context, struct glx_context *new) argument
336 /* Create a new drawable */
572 * This is called from __glXInitialize() when we are given a new
/external/mesa3d/src/intel/vulkan/
H A Danv_allocator.c74 * to grow it as necessary. We mmap the new size and then create a gem bo for
75 * it using the new gem userptr ioctl. Without heavy-handed locking around
85 * space it just allocates a new block from the block pool. This allocator is
96 * sub-allocator need not be thread safe. The streaming allocator gets a new
154 union anv_free_list current, new, old; local
166 new.offset = VG_NOACCESS_READ(next_ptr);
167 new.count = current.count + 1;
168 old.u64 = __sync_val_compare_and_swap(&list->u64, current.u64, new.u64);
182 union anv_free_list current, old, new; local
189 new
212 void *new = PFL_PACK(new_ptr, new_count); local
241 void *new = PFL_PACK(elem, new_count); local
505 struct anv_block_state state, old, new; local
606 struct anv_block_state block, old, new; local
[all...]
/external/python/cpython2/Modules/
H A Dclmodule.c670 clobject *new; local
675 new = PyObject_New(clobject, &Cltype);
676 if (new == NULL)
679 new->ob_compressorHdl = NULL;
680 new->ob_isCompressor = iscompressor;
681 new->ob_paramtypes = NULL;
684 if ((*open_func)(scheme, &new->ob_compressorHdl) == FAILURE ||
686 Py_DECREF(new);
691 return (PyObject *)new;
H A Dshamodule.c402 /* Create a new string */
539 /* The single module-level function: new() */
542 "Return a new SHA hashing object. An optional string argument\n\
550 SHAobject *new; local
555 if (!PyArg_ParseTupleAndKeywords(args, kwdict, "|s*:new", kwlist,
560 if ((new = newSHAobject()) == NULL) {
565 sha_init(new);
568 Py_DECREF(new);
581 sha_update(new, buf,
589 return (PyObject *)new;
[all...]
/external/python/cpython2/Tools/faqwiz/
H A Dfaqwiz.py361 def new(self, section): member in class:FaqDir
693 entry = self.dir.new(section=int(self.ui.section))
694 entry.version = '*new*'
714 if self.ui.editversion == '*new*':
716 entry = self.dir.new(section=sec)
717 entry.version = "*new*"
/external/selinux/libsepol/cil/src/
H A Dandroid.c184 * Takes the old name and version string and creates a new strpool entry by
202 * Change type to attribute - create new versioned name based on old, create
231 * Update datum - create new key, remove entry under old key,
232 * update entry, and insert under new key
270 char *new; local
285 new = __cil_attrib_get_versname((char *) curr->data, args->num);
286 curr->data = (void *) new;
778 * Add these new typeattributeset nodes to the given cil_db.
/external/swiftshader/src/OpenGL/libGL/
H A DDevice.cpp186 void* Device::operator new(size_t size)
288 Image *surface = new Image(0, width, height, format, multiSampleDepth, lockable, true);
307 Image *surface = new Image(0, width, height, format, multiSampleDepth, lockable, true);
/external/swiftshader/src/OpenGL/libGLESv2/
H A DDevice.cpp177 void* Device::operator new(size_t size)
/external/swiftshader/third_party/LLVM/include/llvm/
H A DInstrTypes.h91 void *operator new(size_t, unsigned); // Do not implement
105 void *operator new(size_t s) {
106 return User::operator new(s, 1);
141 void *operator new(size_t, unsigned); // Do not implement
151 void *operator new(size_t s) {
152 return User::operator new(s, 2);
409 /// insert the new CastInst before InsertBefore (if it is non-null).
421 /// to automatically insert the new CastInst at the end of InsertAtEnd (if
629 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
683 void *operator new(size_
[all...]
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DConstantsContext.h33 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
36 void *operator new(size_t s) {
37 return User::operator new(s, 1);
49 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
52 void *operator new(size_t s) {
53 return User::operator new(s, 2);
69 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
72 void *operator new(size_t s) {
73 return User::operator new(s, 3);
89 void *operator new(size_
[all...]
/external/syslinux/gpxe/src/core/
H A Dsettings.c119 struct generic_setting *new = NULL; local
125 /* Create new generic setting, if required */
127 /* Allocate new generic setting */
129 new = zalloc ( sizeof ( *new ) + name_len + len );
130 if ( ! new )
133 /* Populate new generic setting */
134 new->name_len = name_len;
135 new->data_len = len;
136 memcpy ( &new
[all...]
/external/syslinux/gpxe/src/util/
H A Delf2efi.c325 * @ret new New PE section
330 struct pe_section *new; local
361 new = xmalloc ( sizeof ( *new ) + section_filesz );
362 memset ( new, 0, sizeof ( *new ) + section_filesz );
365 strncpy ( ( char * ) new->hdr.Name, section->name,
366 sizeof ( new->hdr.Name ) );
367 new->hdr.Misc.VirtualSize = section_memsz;
368 new
[all...]
/external/toybox/toys/pending/
H A Dmodprobe.c105 // Add new node at the beginning of the list.
108 struct arg_list *new = xmalloc(sizeof(struct arg_list)); local
110 new->arg = (char*)data;
111 new->next = *old;
112 *old = new;
115 // Add new node at tail of list.
/external/tremolo/Tremolo/
H A Dframing.c116 /* allocate a new buffer */
136 /* allocate a new reference */
271 /* make a new reference to tail the second piece */
486 If a page consists of a packet begun on a previous page, and a new
624 allocate new fragment and expose it
646 /* current fragment used/full; get new fragment */
648 ogg_reference *new=ogg_buffer_alloc(oy->bufferpool,bytes); local
649 oy->fifo_head->next=new;
650 oy->fifo_head=new;

Completed in 1102 milliseconds

1234567891011>>