Searched refs:val32 (Results 1 - 5 of 5) sorted by relevance

/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/compat/libtiff/tools/
H A Dtiff2ps.c2221 uint32 val32; /* Unencoded 4 tuple */
2231 val32 = *(++raw_p) << 24;
2232 val32 += *(++raw_p) << 16;
2233 val32 += *(++raw_p) << 8;
2234 val32 += *(++raw_p);
2236 if ( val32 == 0 ) /* Special case */
2244 ascii85[4] = (char) ((val32 % 85) + 33);
2245 val32 /= 85;
2247 ascii85[3] = (char) ((val32 % 85) + 33);
2248 val32 /
2220 uint32 val32; /* Unencoded 4 tuple */ local
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/netinet6/
H A Din6_ifattach.c162 u_int32_t val32; local
172 val32 = RandomULong() ^ tv.tv_usec;
173 bcopy(&val32, seed + sizeof (val32) * i,
174 sizeof (val32));
217 val32 = random() ^ tv.tv_usec;
218 val32 = 1 + (val32 % (0xffffffff - 1));
/macosx-10.9.5/ICU-511.35/icuSources/test/cintltst/
H A Dcnumtst.c1429 int32_t val32; local
1448 val32 = unum_parse(fmt, result, u_strlen(result), &parsepos, &status);
1451 } else if (val32 != INT32_MAX) {
1452 log_err("parse didn't pin return value, got: %d\n", val32);
1480 val32 = unum_parse(fmt, result, u_strlen(result), &parsepos, &status);
1483 } else if (val32 != INT32_MIN) {
1484 log_err("parse didn't pin return value, got: %d\n", val32);
1512 val32 = unum_parse(fmt, result, u_strlen(result), &parsepos, &status);
1515 } else if (val32 != INT32_MAX) {
1516 log_err("parse didn't pin return value, got: %d\n", val32);
[all...]
/macosx-10.9.5/PowerManagement-420.90.1/pmset/
H A Dpmset.c2667 static void print_descriptive_kernel_assertions(uint32_t val32) argument
2670 if (0!= val32)
2672 if (val32&kIOPMDriverAssertionCPUBit) {
2676 if (val32&kIOPMDriverAssertionUSBExternalDeviceBit) {
2681 if (val32&kIOPMDriverAssertionBluetoothHIDDevicePairedBit) {
2686 if (val32&kIOPMDriverAssertionExternalMediaMountedBit) {
2691 if (val32&kIOPMDriverAssertionReservedBit5) {
2696 if (val32&kIOPMDriverAssertionPreventDisplaySleepBit) {
2701 if (val32&kIOPMDriverAssertionReservedBit7) {
2706 if (val32
2764 uint32_t val32=0; local
3753 int32_t val32; local
3821 int32_t val32; local
[all...]
/macosx-10.9.5/Libinfo-449.1.3/lookup.subproj/
H A Dds_module.c547 _extract_uint32_from_xpc_object(xpc_object_t value, uint32_t *val32) argument
556 *val32 = atoi(xpc_string_get_string_ptr(value));
561 *val32 = (uint32_t)xpc_int64_get_value(value);
566 *val32 = (uint32_t)xpc_bool_get_value(value);
572 return _extract_uint32_from_xpc_object(xpc_array_get_value(value, 0), val32);
602 _extract_uint32_from_xpc_array_index(xpc_object_t reply, int index, uint32_t *val32) argument
605 return _extract_uint32_from_xpc_object(value, val32);
648 _extract_uint32_from_xpc_dict(xpc_object_t reply, const char *key, uint32_t *val32) argument
651 return _extract_uint32_from_xpc_object(value, val32);

Completed in 245 milliseconds