Searched defs:memb (Results 1 - 3 of 3) sorted by relevance

/external/skia/tests/
H A DDataRefTest.cpp24 const void* memb = b->at(i, &sizeb); local
26 REPORTER_ASSERT(reporter, !memcmp(mema, memb, sizea));
/external/elfutils/src/
H A Dar.c852 write_member (struct armem *memb, off_t *startp, off_t *lenp, Elf *elf, argument
858 bool changed_header = memb->long_name_off != -1;
866 (int) sizeof (arhdr.ar_name), memb->long_name_off);
872 if (*startp != -1 && !changed_header && *startp + *lenp == memb->old_off)
875 *lenp += (memb->next != NULL
876 ? memb->next->off : end_off) - memb->off;
884 *startp = memb->old_off;
885 *lenp = (memb->next != NULL ? memb
[all...]
/external/python/cpython2/Objects/
H A Dtypeobject.c3703 add_members(PyTypeObject *type, PyMemberDef *memb) argument
3707 for (; memb->name != NULL; memb++) {
3709 if (PyDict_GetItemString(dict, memb->name))
3711 descr = PyDescr_NewMember(type, memb);
3714 if (PyDict_SetItemString(dict, memb->name, descr) < 0) {

Completed in 162 milliseconds