Searched refs:globals (Results 1 - 25 of 424) sorted by path

1234567891011>>

/macosx-10.9.5/BerkeleyDB-21/db/build_brew/
H A Dbdbread.mak36 OBJS =bdbread.o AEEModGen.o AEEAppGen.o bt_compact.o bt_compare.o bt_conv.o bt_curadj.o bt_cursor.o bt_delete.o bt_method.o bt_open.o bt_put.o bt_rec.o bt_reclaim.o bt_recno.o bt_rsearch.o bt_search.o bt_split.o bt_stat.o btree_auto.o atol.o isalpha.o isdigit.o isprint.o isspace.o printf.o qsort.o rand.o strcasecmp.o strerror.o strncat.o strsep.o strtol.o time.o crypto_stub.o db_byteorder.o db_err.o db_getlong.o db_idspace.o db_log2.o db_shash.o dbt.o mkpath.o zerofill.o crdel_auto.o crdel_rec.o db.o db_am.o db_auto.o db_cam.o db_cds.o db_conv.o db_dispatch.o db_dup.o db_iface.o db_join.o db_meta.o db_method.o db_open.o db_overflow.o db_pr.o db_rec.o db_reclaim.o db_remove.o db_rename.o db_ret.o db_setid.o db_setlsn.o db_stati.o db_truncate.o db_upg.o db_vrfy_stub.o dbreg.o dbreg_auto.o dbreg_rec.o dbreg_stat.o dbreg_util.o env_alloc.o env_config.o env_failchk.o env_file.o env_method.o env_name.o env_open.o env_recover.o env_region.o env_register.o env_sig.o env_stat.o fileops_auto.o fop_basic.o fop_rec.o fop_util.o hash_func.o hash_stub.o hmac.o sha1.o lock_stub.o log.o log_archive.o log_compare.o log_debug.o log_get.o log_method.o log_put.o log_stat.o mp_alloc.o mp_bh.o mp_fget.o mp_fmethod.o mp_fopen.o mp_fput.o mp_fset.o mp_method.o mp_mvcc.o mp_region.o mp_register.o mp_resize.o mp_stat.o mp_sync.o mp_trickle.o mut_stub.o os_alloc.o os_cpu.o os_fid.o os_flock.o os_getenv.o os_map.o os_root.o os_rpath.o os_stack.o os_tmpdir.o os_uid.o ctime.o fclose.o fgetc.o fgets.o fopen.o fwrite.o getcwd.o globals.o localtime.o os_abort.o os_abs.o os_clock.o os_config.o os_dir.o os_errno.o os_handle.o os_mkdir.o os_open.o os_pid.o os_rename.o os_rw.o os_seek.o os_stat.o os_truncate.o os_unlink.o os_yield.o qam_stub.o rep_stub.o repmgr_stub.o txn.o txn_auto.o txn_chkpt.o txn_failchk.o txn_method.o txn_rec.o txn_recover.o txn_region.o txn_stat.o txn_util.o xa_stub.o
556 globals.o: ..\os_brew\globals.c
/macosx-10.9.5/CPANInternal-140/XML-LibXML/
H A DLibXML.xs27 #include <libxml/globals.h>
H A Ddom.c11 #include <libxml/globals.h>
/macosx-10.9.5/CommonCrypto-60049/lib/
H A DCommonCryptor.c64 cc_globals_t globals = _cc_globals(); local
66 dispatch_once(&(globals->cipherModeTab[cipher][i].init), ^{
67 globals->cipherModeTab[cipher][i].ecb = ccmodeList[cipher][i].ecb();
68 globals->cipherModeTab[cipher][i].cbc = ccmodeList[cipher][i].cbc();
69 globals->cipherModeTab[cipher][i].cfb = ccmodeList[cipher][i].cfb();
70 globals->cipherModeTab[cipher][i].cfb8 = ccmodeList[cipher][i].cfb8();
71 globals->cipherModeTab[cipher][i].ctr = ccmodeList[cipher][i].ctr();
72 globals->cipherModeTab[cipher][i].ofb = ccmodeList[cipher][i].ofb();
73 globals->cipherModeTab[cipher][i].xts = ccmodeList[cipher][i].xts();
74 globals
[all...]
H A DCommonDigest.c58 cc_globals_t globals = _cc_globals(); local
59 dispatch_once(&globals->digest_info_init, ^{
60 globals->digest_info = (const struct ccdigest_info **)calloc(diMax, sizeof(struct ccdigest_info *));
61 globals->digest_info[kCCDigestNone] = NULL;
62 globals->digest_info[kCCDigestMD2] = &ccmd2_di;
63 globals->digest_info[kCCDigestMD4] = &ccmd4_di;
64 globals->digest_info[kCCDigestMD5] = ccmd5_di();
65 globals->digest_info[kCCDigestRMD128] = &ccrmd128_di;
66 globals->digest_info[kCCDigestRMD160] = &ccrmd160_di;
67 globals
[all...]
H A DCommonKeyDerivation.c70 cc_globals_t globals = _cc_globals(); local
73 if (globals->timebaseInfo.denom == 0) {
74 (void)mach_timebase_info(&globals->timebaseInfo);
78 return (uint64_t) (timeNano * globals->timebaseInfo.numer) / (globals->timebaseInfo.denom * 1000000);
H A DCommonRandom.c71 cc_globals_t globals = _cc_globals(); local
72 dispatch_once(&globals->dev_random_init, ^{
73 globals->dev_random.rngtype = rng_devrandom;
74 globals->dev_random.state.devrandom.devrandom = (struct ccrng_system_state *)CC_XMALLOC(sizeof(struct ccrng_system_state));
75 ccrng_system_init(globals->dev_random.state.devrandom.devrandom);
78 return (struct ccrng_state *) globals->dev_random.state.devrandom.devrandom;
154 cc_globals_t globals = _cc_globals(); local
155 ccInternalRandomRef drbg = &globals->drbg;
157 dispatch_once(&globals->drbg_init, ^{
H A Dccdebug.c45 ccdebug_init(cc_globals_t globals) { argument
46 dispatch_once(&globals->debug_init, ^{
51 globals->aslhandle = asl_open(std_ident, std_facility, std_options);
52 globals->msgptr = asl_new(ASL_TYPE_MSG);
53 asl_set(globals->msgptr, ASL_KEY_FACILITY, "com.apple.platformsec");
64 cc_globals_t globals = _cc_globals(); local
65 ccdebug_init(globals);
69 asl_vlog(globals->aslhandle, globals->msgptr, level, fmtbuffer, argp);
/macosx-10.9.5/CommonCrypto-60049/libcn/
H A DCommonBaseXX.c261 cc_globals_t globals = _cc_globals(); local
263 dispatch_once(&globals->basexx_init, ^{
265 globals->encoderTab[i].encoderRef = NULL;
266 globals->encoderTab[kCNEncodingBase64].encoderRef = &defaultBase64;
267 globals->encoderTab[kCNEncodingBase32].encoderRef = &defaultBase32;
268 globals->encoderTab[kCNEncodingBase32Recovery].encoderRef = &recoveryBase32;
269 globals->encoderTab[kCNEncodingBase32HEX].encoderRef = &hexBase32;
270 globals->encoderTab[kCNEncodingBase16].encoderRef = &defaultBase16;
272 dispatch_once(&globals->encoderTab[encoding].encoderInit, ^{
273 globals
[all...]
H A DCommonCRC.c32 cc_globals_t globals = _cc_globals(); local
33 dispatch_once(&globals->crc_init, ^{
34 globals->crcSelectionTab[kCN_CRC_8].descriptor = &crc8;
35 globals->crcSelectionTab[kCN_CRC_8_ICODE].descriptor = &crc8_icode;
36 globals->crcSelectionTab[kCN_CRC_8_ITU].descriptor = &crc8_itu;
37 globals->crcSelectionTab[kCN_CRC_8_ROHC].descriptor = &crc8_rohc;
38 globals->crcSelectionTab[kCN_CRC_8_WCDMA].descriptor = &crc8_wcdma;
39 globals->crcSelectionTab[kCN_CRC_16].descriptor = &crc16;
40 globals->crcSelectionTab[kCN_CRC_16_CCITT_TRUE].descriptor = &crc16_ccitt_true;
41 globals
[all...]
/macosx-10.9.5/IOFWDVComponents-207.4.1/
H A DDVIsochComponent.c190 static IsochComponentGlobals globals; variable
962 DeviceDescriptionPtr deviceDescriptionPtr = &globals.deviceDescription[(int)refcon-1];
1003 deviceDescriptionPtr->fRead = DVAllocRead(deviceDescriptionPtr->fDevice, globals.fDVThread);
1147 return DVRequest(globals.fDVThread, request, ih, (UInt32)params);
1880 IsochComponentGlobalsPtr g = &globals;
1895 // One-time initialization of globals
1923 IsochComponentGlobalsPtr g = &globals;
2009 IsochComponentGlobalsPtr g = &globals;
2079 IsochComponentGlobalsPtr g = &globals;
2174 IsochComponentGlobalsPtr g = &globals;
[all...]
/macosx-10.9.5/IOFWDVComponents-207.4.1/MacOS9Src/
H A DDVIsochComponent.MacOS9223 list validity check from client. Create component globals in
314 // globals
345 IsochComponentGlobals *componentGlobals; // isoch component globals
402 // component globals
418 IsochComponentGlobalsPtr gGlobals; // pointer to component globals
595 IsochComponentGlobalsHandle globHdl = 0L; // Handle to our globals
810 IsochComponentInstancePtr instancePtr = nil; // Pointer to instance globals
811 Handle instanceHandle = nil; // Handle to instance globals
935 // after the instance globals are allocated, but before the component globals
[all...]
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDFamily/
H A DIOHIDParserPriv.h229 HIDGlobalItems globals; member in struct:HIDReportItem
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDSystem/IOHIDDescriptorParser/
H A DHIDCheckReport.c86 && (reportID != ptReportItem->globals.reportID))
96 reportIndex = ptReportItem->globals.reportIndex;
H A DHIDGetButtonCaps.c188 ptCapability->reportID = ptReportItem->globals.reportID;
248 //startBit += (ptReportItem->globals.reportSize * ptReportItem->globals.reportCount);
249 startBit += ptReportItem->globals.reportSize;
403 ptCapability->reportID = ptReportItem->globals.reportID;
413 ptCapability->unitExponent = ptReportItem->globals.reportSize;
414 ptCapability->units = ptReportItem->globals.reportCount;
422 ptCapability->u.notRange.reserved2 = ptReportItem->globals.logicalMaximum;
423 ptCapability->u.notRange.reserved3 = ptReportItem->globals.logicalMinimum;
427 ptCapability->u.notRange.reserved2 = ptReportItem->globals
[all...]
H A DHIDGetButtons.c128 for (iE=0; iE<ptReportItem->globals.reportCount; iE++)
135 status = HIDGetData(psReport, iReportLength, iStart, ptReportItem->globals.reportSize, &iValue, false);
140 iStart += ptReportItem->globals.reportSize;
141 HIDUsageAndPageFromIndex(preparsedDataRef,ptReportItem,ptReportItem->globals.logicalMinimum+iE,&tUsageAndPage);
156 HIDUsageAndPageFromIndex(preparsedDataRef,ptReportItem,ptReportItem->globals.logicalMinimum+iE,&tUsageAndPage);
H A DHIDGetButtonsOnPage.c156 for (iE=0; iE<ptReportItem->globals.reportCount; iE++)
161 ptReportItem->globals.reportSize,
167 iValue-ptReportItem->globals.logicalMinimum,
169 iStart += ptReportItem->globals.reportSize;
H A DHIDGetNextButtonInfo.c131 (usagePage == 0 || ptReportItem->globals.usagePage == usagePage) &&
H A DHIDGetNextUsageValueInfo.c132 (usagePage == 0 || ptReportItem->globals.usagePage == usagePage) &&
H A DHIDGetUsageValue.c147 + (ptReportItem->globals.reportSize * iUsageIndex);
149 ptReportItem->globals.reportSize, &iValue,
150 ((ptReportItem->globals.logicalMinimum < 0)
151 ||(ptReportItem->globals.logicalMaximum < 0)));
250 + (ptReportItem->globals.reportSize * iUsageIndex);
252 ptReportItem->globals.reportSize, &iValue,
253 ((ptReportItem->globals.logicalMinimum < 0)
254 ||(ptReportItem->globals.logicalMaximum < 0)));
H A DHIDGetUsageValueArray.c156 iStart = ptReportItem->startBit + (ptReportItem->globals.reportSize * iUsageIndex);
157 byteCount = (ptReportItem->globals.reportSize * iCount + 7)/8;
163 ((ptReportItem->globals.logicalMinimum < 0)
164 ||(ptReportItem->globals.logicalMaximum < 0)));
H A DHIDGetValueCaps.c154 && ((ptReportItem->globals.usagePage == usagePage)
194 ptCapability->reportID = ptReportItem->globals.reportID;
248 ptCapability->bitSize = ptReportItem->globals.reportSize;
250 ptCapability->logicalMin = ptReportItem->globals.logicalMinimum;
251 ptCapability->logicalMax = ptReportItem->globals.logicalMaximum;
252 ptCapability->physicalMin = ptReportItem->globals.physicalMinimum;
253 ptCapability->physicalMax = ptReportItem->globals.physicalMaximum;
387 && ((ptReportItem->globals.usagePage == usagePage)
428 ptCapability->reportID = ptReportItem->globals.reportID;
430 ptCapability->unitExponent = ptReportItem->globals
[all...]
H A DHIDHasUsage.c135 iCountsLeft = ptReportItem->globals.reportCount - iUsageIndex - 1;
173 // iCountsLeft = ptReportItem->globals.reportCount - iUsageIndex - 1;
174 iCountsLeft = ptReportItem->globals.reportCount - iUsageIndex;
H A DHIDInitReport.c121 ptReportItem->globals.reportID == reportID)
133 if ( 0 < ptReportItem->globals.logicalMinimum ||
134 0 > ptReportItem->globals.logicalMaximum)
153 bitSize = ptReportItem->globals.reportSize;
158 isSigned = (ptReportItem->globals.logicalMinimum < 0) ||
159 !(ptReportItem->globals.logicalMaximum & bitwiseMin);
187 if (bitwiseMax > ptReportItem->globals.logicalMaximum)
193 if (bitwiseMin < ptReportItem->globals.logicalMinimum)
214 + (ptReportItem->globals.reportSize * lR);
216 ptReportItem->globals
[all...]
H A DHIDIsButtonOrValue.c110 || (ptReportItem->globals.reportSize == 1));
167 && (ptReportItem->globals.reportSize != 1));

Completed in 379 milliseconds

1234567891011>>