Searched refs:nValues (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10.1/configd-699.1.5/configd.tproj/
H A D_snapshot.c60 const void ** nValues = nValues_q; local
71 nValues = CFAllocatorAllocate(NULL, nElements * sizeof(CFTypeRef), 0);
73 bzero(nValues, nElements * sizeof(CFTypeRef));
83 nValues[i] = CFDictionaryCreateMutableCopy(NULL, 0, oValues[i]);
86 CFDictionarySetValue((CFMutableDictionaryRef)nValues[i],
91 nValues[i] = CFRetain(oValues[i]);
98 nValues,
107 CFRelease(nValues[i]);
113 CFAllocatorDeallocate(NULL, nValues);
/macosx-10.10.1/xnu-2782.1.97/iokit/IOKit/
H A DIOReportMacros.h394 * int nValues - number of values to be reported
397 #define SIMPLEARRAY_BUFSIZE(nValues) \
398 ((((nValues)/IOR_VALUES_PER_ELEMENT) + (((nValues) % IOR_VALUES_PER_ELEMENT) ? 1:0)) \
404 * int nValues - number of elements to be reported
405 * void* buf - ptr to SIMPLEARRAY_BUFSIZE(nValues) bytes
415 #define SIMPLEARRAY_INIT(nValues, buf, bufSize, providerID, channelID, cats) \
419 uint32_t __nElems = (((nValues) / IOR_VALUES_PER_ELEMENT) + \
420 (((nValues) % IOR_VALUES_PER_ELEMENT) ? 1 : 0)); \
421 if ((bufSize) >= SIMPLEARRAY_BUFSIZE(nValues)) { \
[all...]
/macosx-10.10.1/tcl-105/tk/tk/generic/ttk/
H A DttkEntry.c1726 int nValues; local
1729 Tcl_ListObjGetElements(interp,cbPtr->combobox.valuesObj,&nValues,&values);
1735 || currentIndex >= nValues
1741 for (currentIndex = 0; currentIndex < nValues; ++currentIndex) {
1746 if (currentIndex >= nValues) {
1758 if (currentIndex < 0 || currentIndex >= nValues) {
H A DttkTreeview.c1731 int nValues = 0; local
1739 Tcl_ListObjGetElements(NULL, item->valuesObj, &nValues, &values);
1741 tv->tree.columns[i].data = (i < nValues) ? values[i] : 0;

Completed in 382 milliseconds