Searched refs:itr (Results 1 - 22 of 22) sorted by relevance

/macosx-10.10.1/apache-793/httpd/server/
H A Dutil_fcgi.c188 char *itr; local
194 itr = buffer;
212 itr[0] = keylen & 0xff;
213 itr += 1;
221 itr[0] = ((keylen >> 24) & 0xff) | 0x80;
222 itr[1] = ((keylen >> 16) & 0xff);
223 itr[2] = ((keylen >> 8) & 0xff);
224 itr[3] = ((keylen) & 0xff);
225 itr += 4;
236 itr[
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/ADT/
H A DImmutableMap.h207 typename TreeTy::iterator itr; member in class:llvm::ImmutableMap::iterator
210 iterator(TreeTy* t) : itr(t) {}
214 value_type_ref operator*() const { return itr->getValue(); }
215 value_type* operator->() const { return &itr->getValue(); }
217 key_type_ref getKey() const { return itr->getValue().first; }
218 data_type_ref getData() const { return itr->getValue().second; }
221 iterator& operator++() { ++itr; return *this; }
222 iterator operator++(int) { iterator tmp(*this); ++itr; return tmp; }
223 iterator& operator--() { --itr; return *this; }
224 iterator operator--(int) { iterator tmp(*this); --itr; retur
360 typename TreeTy::iterator itr; member in class:llvm::ImmutableMapRef::iterator
[all...]
H A DImmutableSet.h1056 typename TreeTy::iterator itr; member in class:llvm::ImmutableSet::iterator
1057 iterator(TreeTy* t) : itr(t) {}
1061 inline value_type_ref operator*() const { return itr->getValue(); }
1062 inline iterator& operator++() { ++itr; return *this; }
1063 inline iterator operator++(int) { iterator tmp(*this); ++itr; return tmp; }
1064 inline iterator& operator--() { --itr; return *this; }
1065 inline iterator operator--(int) { iterator tmp(*this); --itr; return tmp; }
1066 inline bool operator==(const iterator& RHS) const { return RHS.itr == itr; }
1067 inline bool operator!=(const iterator& RHS) const { return RHS.itr !
1182 typename TreeTy::iterator itr; member in class:llvm::ImmutableSetRef::iterator
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/CodeGen/
H A DSlotIndexes.h382 Mi2IndexMap::const_iterator itr = mi2iMap.find(getBundleStart(MI)); local
383 assert(itr != mi2iMap.end() && "Instruction not found in maps.");
384 return itr->second;
395 IndexList::iterator itr(index.listEntry());
396 ++itr;
397 while (itr != indexList.end() && itr->getInstr() == 0) { ++itr; }
398 return SlotIndex(itr, index.getSlot());
486 SmallVectorImpl<IdxMBBPair>::const_iterator itr local
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/
H A DSlotIndexes.cpp148 for (IndexList::const_iterator itr = indexList.begin();
149 itr != indexList.end(); ++itr) {
150 dbgs() << itr->getIndex() << " ";
152 if (itr->getInstr() != 0) {
153 dbgs() << *itr->getInstr();
H A DRegAllocPBQP.cpp501 for (LiveRangeEdit::iterator itr = LRE.begin(), end = LRE.end();
502 itr != end; ++itr) {
503 assert(!(*itr)->empty() && "Empty spill range.");
504 DEBUG(dbgs() << PrintReg((*itr)->reg, tri) << " ");
505 vregsToAlloc.insert((*itr)->reg);
524 itr = emptyIntervalVRegs.begin(), end = emptyIntervalVRegs.end();
525 itr != end; ++itr) {
526 LiveInterval *li = &lis->getInterval(*itr);
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/IPO/
H A DInternalize.cpp81 for(std::vector<const char *>::const_iterator itr = exportList.begin();
82 itr != exportList.end(); itr++) {
83 ExternalNames.insert(*itr);
/macosx-10.10.1/xar-254/xar/lib/
H A Dhash.c186 unsigned int itr = 0; local
190 for(itr = 0;itr < len;itr++) {
191 sprintf(hexValue,"%02x",m[itr]);
/macosx-10.10.1/ICU-531.30/icuSources/tools/pkgdata/
H A Dpkgtypes.c201 char *itr; local
202 while ((itr = uprv_strchr(path, U_FILE_ALT_SEP_CHAR))) {
203 *itr = U_FILE_SEP_CHAR;
/macosx-10.10.1/IOHIDFamily-606.1.7/IOHIDSystem/
H A DIOHIKeyboard.cpp1031 OSIterator *itr = getClientIterator(); local
1032 if (itr) {
1035 client = IOHIDSecurePromptClient::nextForIterator(itr);
1041 itr->release();
1228 OSIterator *itr = getClientIterator(); local
1229 if (itr) {
1231 client = IOHIDSecurePromptClient::nextForIterator(itr);
1242 itr->release();
1275 OSIterator *itr = getClientIterator(); local
1276 if (itr) {
[all...]
H A DIOHIDSecurePromptClient.cpp429 OSIterator *itr = NULL;
436 itr = getProviderIterator();
437 if (itr) {
441 while (!done && (NULL != (provider = itr->getNextObject()))) {
445 if (itr->isValid()) {
451 itr->reset();
454 itr->release();
544 OSIterator *itr = getProviderIterator();
545 if (itr) {
549 while (!done && (NULL != (provider = itr
[all...]
H A DIOHIDSystem.cpp6227 OSIterator *itr = getProviderIterator(); local
6228 if (itr) {
6232 while (!done && (NULL != (provider = itr->getNextObject()))) {
6242 if (itr->isValid()) {
6246 itr->reset();
6249 itr->release();
6257 OSIterator *itr = getProviderIterator(); local
6258 if (itr) {
6262 while (!done && (NULL != (provider = itr->getNextObject()))) {
6276 if (itr
6292 OSIterator *itr = getProviderIterator(); local
6322 OSIterator *itr = getProviderIterator(); local
[all...]
H A DIOHIPointing.cpp1981 OSCollectionIterator *itr = NULL;
1994 itr = OSCollectionIterator::withCollection(parametricCurves);
1995 require(itr, exit_early);
1998 itr->reset();
1999 dict = OSDynamicCast(OSDictionary, itr->getNextObject());
2013 dict = OSDynamicCast(OSDictionary, itr->getNextObject());
2016 require(success || !itr->isValid(), exit_early);
2069 if (itr) {
2070 itr->release();
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/CodeGen/PBQP/
H A DGraph.h325 for (AdjEdgeItr itr = n.edgesBegin(), end = n.edgesEnd(); itr != end;) {
326 EdgeItr eItr = *itr;
327 ++itr;
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-core/Lib/PyObjCTools/
H A DKeyValueCoding.py171 itr = iter(obj)
175 return [getKey(obj, key) for obj in itr]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/Lib/PyObjCTools/
H A DKeyValueCoding.py171 itr = iter(obj)
175 return [getKey(obj, key) for obj in itr]
/macosx-10.10.1/apache-793/httpd/modules/proxy/
H A Dmod_proxy_fcgi.c334 const char *itr = readbuf; local
336 while (*itr) {
337 if (*itr == '\r') {
348 else if (*itr == '\n') {
374 ++itr;
/macosx-10.10.1/IOHIDFamily-606.1.7/IOHIDFamily/
H A DIOHIDLibUserClient.cpp1344 OSCollectionIterator *itr = OSCollectionIterator::withCollection(extended); local
1345 if (itr) {
1349 while (!done && (NULL != (obj = itr->getNextObject()))) {
1363 if (itr->isValid()) {
1369 itr->reset();
1372 itr->release();
/macosx-10.10.1/xnu-2782.1.97/bsd/netinet6/
H A Dnd6.c1381 struct nd_prefix_list *itr = prefix_list; local
1404 while (itr != NULL && nd6_ra_msg_data.list_index < list_length) {
1405 bcopy(&itr->pr.ndpr_prefix, &nd6_ra_msg_data.prefix.prefix,
1407 nd6_ra_msg_data.prefix.raflags = itr->pr.ndpr_raf;
1408 nd6_ra_msg_data.prefix.prefixlen = itr->pr.ndpr_plen;
1410 nd6_ra_msg_data.prefix.vltime = itr->pr.ndpr_vltime;
1411 nd6_ra_msg_data.prefix.pltime = itr->pr.ndpr_pltime;
1412 nd6_ra_msg_data.prefix.expire = ndpr_getexpire(&itr->pr);
1413 nd6_ra_msg_data.prefix.flags = itr->pr.ndpr_stateflags;
1414 nd6_ra_msg_data.prefix.refcnt = itr
[all...]
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dia64.vim160 "itc/itr
257 syn match ia64registers "\(cpuid\|dbr\|ibr\|pkr\|pmc\|pmd\|rr\|itr\|dtr\)\>"
H A Dmaxima.vim111 syn keyword maximaFunc isqrt itr j0 j1 jacobi jacobi_cd jacobi_cn jacobi_cs jacobi_dc
/macosx-10.10.1/ICU-531.30/icuSources/tools/tzcode/
H A Dtz2icu.cpp386 vector<Transition>::iterator itr = info.transitions.begin(); local
387 info.transitions.insert(itr, Transition(LOWEST_TIME32, transitionTypes[minidx]));
444 vector<Transition>::iterator itr = info.transitions.begin(); local
445 info.transitions.insert(itr, Transition(LOWEST_TIME32, initialTypeIdx));

Completed in 190 milliseconds