Searched refs:ab (Results 1 – 3 of 3) sorted by relevance
| /xnu-12377.1.9/bsd/vfs/ |
| H A D | vfs_attrlist.c | 145 attrlist_pack_fixed(struct _attrlist_buf *ab, void *source, ssize_t count) in attrlist_pack_fixed() argument 166 fit = lmin(count, ab->allocated - (ab->fixedcursor - ab->base)); in attrlist_pack_fixed() 169 bcopy(source, ab->fixedcursor, fit); in attrlist_pack_fixed() 173 ab->fixedcursor += roundup(count, 4); in attrlist_pack_fixed() 185 attrlist_pack_variable2(struct _attrlist_buf *ab, const void *source, ssize_t count, in attrlist_pack_variable2() argument 197 ar.attr_dataoffset = (int32_t)(ab->varcursor - ab->fixedcursor); in attrlist_pack_variable2() 199 attrlist_pack_fixed(ab, &ar, sizeof(ar)); in attrlist_pack_variable2() 209 fit = lmin(count, ab->allocated - (ab->varcursor - ab->base)); in attrlist_pack_variable2() 212 bcopy(source, ab->varcursor, fit); in attrlist_pack_variable2() 214 ab->varcursor += fit; in attrlist_pack_variable2() [all …]
|
| /xnu-12377.1.9/iokit/Tests/ |
| H A D | Tests.cpp | 886 OSSharedPtr<OSString> ab = OSString::withCString("abcdef", 2); in OSCollectionTest() local 887 assert(strcmp(ab->getCStringNoCopy(), "ab") == 0); in OSCollectionTest()
|
| /xnu-12377.1.9/bsd/netinet/ |
| H A D | in_pcb.c | 4312 inp_get_activity_bitmap(struct inpcb *inp, activity_bitmap_t *ab) in inp_get_activity_bitmap() argument 4315 bcopy(&inp->inp_mstat.ms_total.ts_bitmap, ab, sizeof(*ab)); in inp_get_activity_bitmap()
|