Searched refs:cur (Results 1 - 25 of 603) sorted by last modified time

1234567891011>>

/macosx-10.10.1/xnu-2782.1.97/osfmk/vm/
H A Dvm_map.c3836 vm_map_entry_t cur; local
3849 if (!vm_map_lookup_entry(map, start, &cur))
3857 *entry = cur;
3858 if (end <= cur->vme_end)
3865 prev = cur->vme_end;
3866 cur = cur->vme_next;
3867 while ((cur != vm_map_to_entry(map)) && (prev == cur->vme_start)) {
3868 if (end <= cur
11328 register vm_map_entry_t cur; local
[all...]
/macosx-10.10.1/xnu-2782.1.97/iokit/Kernel/
H A DIOMemoryDescriptor.cpp238 IOAddressRange cur = r.v64[ind]; local
239 addr = cur.address;
240 len = cur.length;
244 IOVirtualRange cur = r.v[ind]; local
245 addr = cur.address;
246 len = cur.length;
925 prot, // cur
944 prot, // cur
/macosx-10.10.1/xnu-2782.1.97/bsd/vfs/
H A Dvfs_fsevents.c358 kfs_event *kfse, *kfse_dest=NULL, *cur; local
567 cur = kfse;
582 cur->dev = (dev_t)(va_arg(ap, dev_t));
584 cur->dev = (dev_t)0xbadc0de1;
590 cur->ino = (ino64_t)(va_arg(ap, ino64_t));
592 cur->ino = 0xbadc0de2;
603 memcpy(&cur->str, &val, sizeof(ino64_t));
617 memcpy(&cur->uid, &val, sizeof(uint64_t));
631 cur = kfse_dest;
637 cur
1266 kfs_event *cur; local
[all...]
/macosx-10.10.1/xnu-2782.1.97/bsd/dev/dtrace/
H A Dfasttrap.c955 dtrace_cpu_t *cur, *cpu = CPU; local
964 for (cur = cpu->cpu_next; cur != cpu; cur = cur->cpu_next) {
965 lck_rw_lock_exclusive(&cur->cpu_ft_lock);
966 // rw_enter(&cur->cpu_ft_lock, RW_WRITER);
972 for (cur = cpu->cpu_next; cur != cpu; cur
[all...]
/macosx-10.10.1/system_cmds-643.1.1/arch.tproj/
H A Darch.c513 char *cur, *path; local
533 cur = alloca(strlen(path) + 1);
534 if(cur == NULL)
536 strcpy(cur, path);
537 while((p = strsep(&cur, ":")) != NULL) {
/macosx-10.10.1/ppp-786.1.1/Helpers/pppd/
H A Dmain.c2473 struct notifier *cur = *notif;
2474 while (cur->next != NULL)
2475 cur = cur->next;
2476 cur->next = np;
/macosx-10.10.1/objc4-646/runtime/
H A Dobjc-runtime-old.mm3141 _objc_unresolved_category *cur;
3147 cur = cat;
3150 while (cur) {
3151 ahead = cur->next;
3152 cur->next = prev;
3153 prev = cur;
3154 cur = ahead;
H A Dobjc-cache-old.mm1203 cache_allocator_block *cur;
1226 for (cur = rgn->freeList; cur != NULL; cur = cur->nextFree) {
1227 cache_allocator_block *ahead = cur->nextFree;
1230 // cur and ahead straddle dead, OR dead belongs at end of free list
1231 cur->nextFree = dead;
1236 cache_allocator_coalesce(cur);
/macosx-10.10.1/llvmCore-3425.0.34/utils/unittest/googletest/
H A Dgtest-printers.cc265 const char cur = begin[index]; local
266 if (is_previous_hex && IsXDigit(cur)) {
272 is_previous_hex = PrintAsNarrowStringLiteralTo(cur, os) == kHexEscape;
290 const wchar_t cur = begin[index]; local
291 if (is_previous_hex && isascii(cur) && IsXDigit(static_cast<char>(cur))) {
297 is_previous_hex = PrintAsWideStringLiteralTo(cur, os) == kHexEscape;
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/Scalar/
H A DSink.cpp207 Loop *cur = LI->getLoopFor(Inst->getParent()); local
208 if (succ != 0 && succ != cur)
/macosx-10.10.1/dyld-353.2.1/src/
H A DImageLoader.cpp335 const ImageLoader** cur = &dontSearchImages[1]; local
336 return this->findExportedSymbolInDependentImagesExcept(name, &dontSearchImages[0], cur, &dontSearchImages[imageCount], foundIn);
343 const ImageLoader** cur = &dontSearchImages[0]; local
344 return this->findExportedSymbolInDependentImagesExcept(name, &dontSearchImages[0], cur, &dontSearchImages[imageCount], foundIn);
/macosx-10.10.1/xnu-2782.1.97/bsd/netkey/
H A Dkey.c7627 int cur, found = 0; local
7635 for (cur = 0; cur < max_stat_arg; cur++) {
7636 if (key_getsastatbyspi_one(stat_arg[cur].spi,
/macosx-10.10.1/curl-83.1.2/curl/lib/vtls/
H A Dnss.c1481 int cur = 0; local
1690 alpn_protos[cur] = NGHTTP2_PROTO_VERSION_ID_LEN;
1691 cur++;
1692 memcpy(&alpn_protos[cur], NGHTTP2_PROTO_VERSION_ID,
1694 cur += NGHTTP2_PROTO_VERSION_ID_LEN;
1695 alpn_protos[cur] = ALPN_HTTP_1_1_LENGTH;
1696 cur++;
1697 memcpy(&alpn_protos[cur], ALPN_HTTP_1_1, ALPN_HTTP_1_1_LENGTH);
/macosx-10.10.1/IOAudioFamily-200.6/
H A DIOAudioEngineUserClient.cpp832 IOAudioClientBufferExtendedInfo64 * cur; local
865 cur = reserved->extendedInfo;
866 while (cur) {
867 prev = cur;
871 cur = cur->mNextExtended64;
/macosx-10.10.1/xnu-2782.1.97/osfmk/kern/
H A Dqueue.h406 * void queue_insert_before(q, elt, cur, type, field)
409 * <type> cur;
413 #define queue_insert_before(head, elt, cur, type, field) \
417 if ((head) == (queue_entry_t)(cur)) { \
429 (elt)->field.next = (queue_entry_t)(cur); \
430 if ((head)->next == (queue_entry_t)(cur)) { \
435 __prev = (elt)->field.prev = (cur)->field.prev; \
439 (cur)->field.prev = (queue_entry_t)(elt); \
448 * void queue_insert_after(q, elt, cur, type, field)
451 * <type> cur;
[all...]
/macosx-10.10.1/OpenSSL098-52/bin/
H A Ddeprecate-prototypes.pl78 my $cur = "";
82 $cur .= $line;
84 if (($cur =~ m|/\*|s) &&
85 ($cur !~ m|\*/|s)) {
87 } elsif ($cur =~ m|\\\n$|) {
89 } elsif ($cur =~ m|^\s*${hash}|s) {
91 $newdata .= $cur;
92 $cur = "";
97 my $parenCount = countBalancedParens($cur);
104 $cur
[all...]
/macosx-10.10.1/file_cmds-242/ls/
H A Dls.c598 FTSENT *cur; local
714 for (cur = list, entries = 0; cur; cur = cur->fts_link) {
715 if (cur->fts_info == FTS_ERR || cur->fts_info == FTS_NS) {
717 cur->fts_name, strerror(cur->fts_errno));
718 cur
[all...]
/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DVector.h55 for (T* cur = begin; cur != end; ++cur)
56 cur->~T();
74 for (T* cur = begin; cur != end; ++cur)
75 new (NotNull, cur) T;
/macosx-10.10.1/Libc-1044.1.2/os/
H A Dassumes.c92 struct load_command *cur = NULL; local
94 cur = (struct load_command *)((uintptr_t)hdr32or64 + next);
95 if (cur->cmd == LC_UUID) {
96 struct uuid_command *cmd = (struct uuid_command *)cur;
101 next += cur->cmdsize;
/macosx-10.10.1/copyfile-118.1.2/
H A Dxattr_flags.c224 char *cur = suffix; local
227 *cur++ = '#';
230 *cur++ = mapPtr->enable;
232 if (cur >= (suffix + sizeof(suffix))) {
240 if (cur == suffix + 1) {
/macosx-10.10.1/libdispatch-442.1.4/src/
H A Dallocator.c505 bitmap_t *cur = last + i; local
506 unsigned int index = bitmap_set_first_unset_bit(cur);
510 get_cont_and_indices_for_bitmap_and_index(cur,
513 cur);
/macosx-10.10.1/xnu-2782.1.97/bsd/netinet/
H A Dtcp_sack.c395 struct sackhole *cur, *temp; local
512 cur = TAILQ_LAST(&tp->snd_holes, sackhole_head); /* Last SACK hole */
517 while (sblkp >= sack_blocks && cur != NULL) {
518 if (SEQ_GEQ(sblkp->start, cur->end)) {
526 if (SEQ_LEQ(sblkp->end, cur->start)) {
531 cur = TAILQ_PREV(cur, sackhole_head, scblink);
534 tp->sackhint.sack_bytes_rexmit -= (cur->rxmit - cur->start);
535 if (SEQ_LEQ(sblkp->start, cur
737 struct sackhole *p, *cur = TAILQ_FIRST(&tp->snd_holes); local
[all...]
/macosx-10.10.1/network_cmds-457/netstat.tproj/
H A Dif.c1702 int i, j, cur = sfb->current; local
1713 "current: %10u ]\n", sp->pbox_packets, sp->num_rehash, cur);
1727 printf("\n\t\t\t\tCurrent bins (set %d)", cur);
1736 p = sfb->binstats[cur].stats[i][j].pmark;
1737 q = sfb->binstats[cur].stats[i][j].pkts;
1749 cur ^= 1;
1750 printf("\n\t\t\t\tWarm up bins (set %d)", cur);
1759 p = sfb->binstats[cur].stats[i][j].pmark;
1760 q = sfb->binstats[cur].stats[i][j].pkts;
/macosx-10.10.1/xnu-2782.1.97/bsd/net/
H A Dpf.c1422 struct pf_state_key *cur; local
1428 if ((cur = RB_INSERT(pf_state_tree_lan_ext, &pf_statetbl_lan_ext,
1431 TAILQ_FOREACH(sp, &cur->states, next)
1439 pf_attach_state(cur, s, kif == pfi_all ? 1 : 0);
1442 /* if cur != NULL, we already found a state key and attached to it */
1443 if (cur == NULL && (cur = RB_INSERT(pf_state_tree_ext_gwy,
1598 struct pf_src_node *cur, *next; local
1602 for (cur = RB_MIN(pf_src_tree, &tree_src_tracking); cur; cu
1653 pf_unlink_state(struct pf_state *cur) argument
1680 pf_free_state(struct pf_state *cur) argument
1719 static struct pf_state *cur = NULL; local
1955 struct pf_rule *cur, *prev, *head[PF_SKIP_COUNT]; local
[all...]
H A Dpf_ioctl.c1383 dst->rpool.cur = NULL;
1405 dst->rpool.cur = NULL;
3100 rule->rpool.cur = TAILQ_FIRST(&rule->rpool.list);
3414 newrule->rpool.cur = TAILQ_FIRST(&newrule->rpool.list);
4261 pool->cur = TAILQ_FIRST(&pool->list);
4262 PF_ACPY(&pool->counter, &pool->cur->addr.v.a.addr,

Completed in 466 milliseconds

1234567891011>>