Searched refs:offsetof (Results 1 - 25 of 461) sorted by relevance

1234567891011>>

/macosx-10.10.1/dtrace-147/test/tst/common/offsetof/
H A Derr.D_OFFSETOF_TYPE.notsou.d33 * Test invocation of offsetof() with a type that is not a struct or union.
43 trace(offsetof(int, x));
H A Derr.D_OFFSETOF_BITFIELD.bitfield.d32 * Test invocation of offsetof() with a member that is a bit-field.
43 trace(offsetof(dtrace_aggkey_t, dtak_size));
H A Derr.D_OFFSETOF_TYPE.badtype.d32 * Test invocation of offsetof() with an invalid type.
43 trace(offsetof(struct no_such_type, x));
H A Derr.D_UNKNOWN.badmemb.d32 * Test invocation of offsetof() with an invalid member.
43 trace(offsetof(struct proc, p_no_such_member));
H A Dtst.OffsetofArith.d29 * ASSERTION: offsetof can be used anywhere in a D program that an integer
49 add = offsetof(record_t, c) + offsetof(record_t, x) +
50 offsetof(record_t, y);
51 sub = offsetof(record_t, y) - offsetof(record_t, x);
52 mul = offsetof(record_t, x) * offsetof(record_t, c);
53 div = offsetof(record_t, y) / offsetof(record_
[all...]
H A Dtst.OffsetofAlias.d30 * Test invocation of offsetof() with a struct type alias.
48 printf("offsetof(record_t, c) = %d\n", offsetof(record_t, c));
49 printf("offsetof(record_t, x) = %d\n", offsetof(record_t, x));
50 printf("offsetof(record_t, y) = %d\n", offsetof(record_t, y));
55 /(8 != offsetof(record_t, y)) || (4 != offsetof(record_t, x)) ||
56 (0 != offsetof(record_
[all...]
H A Dtst.OffsetofUnion.d30 * Test invocation of offsetof() with a union type alias.
48 printf("offsetof(record, x) = %d\n", offsetof(union D`record, x));
49 printf("offsetof(record, y) = %d\n", offsetof(union D`record, y));
50 printf("offsetof(record, c) = %d\n", offsetof(union D`record, c));
55 /(0 != offsetof(union D`record, y)) && (0 != offsetof(union D`record, x)) &&
56 (0 != offsetof(unio
[all...]
/macosx-10.10.1/xnu-2782.1.97/bsd/sys/_types/
H A D_offsetof.h28 #ifndef offsetof
29 #define offsetof(type, field) __offsetof(type, field) macro
30 #endif /* offsetof */
/macosx-10.10.1/Security-57031.1.35/Security/include/security_cryptkit/
H A DCryptKitAsn1.cpp18 { SEC_ASN1_INTEGER, offsetof(FEECurveParametersASN1,primeType) },
19 { SEC_ASN1_INTEGER, offsetof(FEECurveParametersASN1,curveType) },
20 { SEC_ASN1_SIGNED, offsetof(FEECurveParametersASN1,q) },
21 { SEC_ASN1_SIGNED, offsetof(FEECurveParametersASN1,k) },
22 { SEC_ASN1_SIGNED, offsetof(FEECurveParametersASN1,m) },
23 { SEC_ASN1_SIGNED, offsetof(FEECurveParametersASN1,a) },
24 { SEC_ASN1_SIGNED, offsetof(FEECurveParametersASN1,b_) },
25 { SEC_ASN1_SIGNED, offsetof(FEECurveParametersASN1,c) },
26 { SEC_ASN1_SIGNED, offsetof(FEECurveParametersASN1,x1Plus) },
27 { SEC_ASN1_SIGNED, offsetof(FEECurveParametersASN
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_cryptkit/lib/
H A DCryptKitAsn1.cpp18 { SEC_ASN1_INTEGER, offsetof(FEECurveParametersASN1,primeType) },
19 { SEC_ASN1_INTEGER, offsetof(FEECurveParametersASN1,curveType) },
20 { SEC_ASN1_SIGNED, offsetof(FEECurveParametersASN1,q) },
21 { SEC_ASN1_SIGNED, offsetof(FEECurveParametersASN1,k) },
22 { SEC_ASN1_SIGNED, offsetof(FEECurveParametersASN1,m) },
23 { SEC_ASN1_SIGNED, offsetof(FEECurveParametersASN1,a) },
24 { SEC_ASN1_SIGNED, offsetof(FEECurveParametersASN1,b_) },
25 { SEC_ASN1_SIGNED, offsetof(FEECurveParametersASN1,c) },
26 { SEC_ASN1_SIGNED, offsetof(FEECurveParametersASN1,x1Plus) },
27 { SEC_ASN1_SIGNED, offsetof(FEECurveParametersASN
[all...]
/macosx-10.10.1/security_dotmac_tp-55107.1/lib/
H A DdotMacTpAsn1Templates.cpp33 { SEC_ASN1_UTF8_STRING, offsetof(DotMacTpPendingRequest, userName) },
34 { SEC_ASN1_INTEGER, offsetof(DotMacTpPendingRequest, certTypeTag) },
35 { SEC_ASN1_UTF8_STRING, offsetof(DotMacTpPendingRequest, domainName) },
/macosx-10.10.1/Security-57031.1.35/Security/include/security_asn1/
H A DosKeyTemplates.c37 { SEC_ASN1_INTEGER, offsetof(NSS_DSAAlgParams,p) },
38 { SEC_ASN1_INTEGER, offsetof(NSS_DSAAlgParams,q) },
39 { SEC_ASN1_INTEGER, offsetof(NSS_DSAAlgParams,g) },
46 { SEC_ASN1_INTEGER, offsetof(NSS_DSAAlgParamsBSAFE,keySizeInBits) },
47 { SEC_ASN1_INTEGER, offsetof(NSS_DSAAlgParamsBSAFE,p) },
48 { SEC_ASN1_INTEGER, offsetof(NSS_DSAAlgParamsBSAFE,q) },
49 { SEC_ASN1_INTEGER, offsetof(NSS_DSAAlgParamsBSAFE,g) },
56 { SEC_ASN1_OBJECT_ID, offsetof(NSS_DSAAlgorithmIdX509, algorithm) },
59 offsetof(NSS_DSAAlgorithmIdX509,params),
67 { SEC_ASN1_OBJECT_ID, offsetof(NSS_DSAAlgorithmIdBSAF
[all...]
H A DcsrTemplates.c33 { SEC_ASN1_INTEGER, offsetof(NSSCertRequestInfo,version) },
35 offsetof(NSSCertRequestInfo,subject),
38 offsetof(NSSCertRequestInfo,subjectPublicKeyInfo),
41 offsetof(NSSCertRequestInfo,attributes),
49 offsetof(NSSCertRequest,reqInfo),
52 offsetof(NSSCertRequest,signatureAlgorithm),
54 { SEC_ASN1_BIT_STRING, offsetof(NSSCertRequest,signature) },
61 offsetof(NSS_SignedCertRequest,certRequestBlob),
64 offsetof(NSS_SignedCertRequest,signatureAlgorithm),
66 { SEC_ASN1_BIT_STRING, offsetof(NSS_SignedCertReques
[all...]
H A DX509Templates.c59 offsetof(NSS_Validity,notBefore.item),
62 offsetof(NSS_Validity,notAfter.item),
72 offsetof(NSS_CertExtension,extnId) },
74 offsetof(NSS_CertExtension,critical) },
76 offsetof(NSS_CertExtension,value) },
91 offsetof(NSS_TBSCertificate,version),
95 offsetof(NSS_TBSCertificate,serialNumber) },
97 offsetof(NSS_TBSCertificate,signature),
99 { SEC_ASN1_SAVE, offsetof(NSS_TBSCertificate,derIssuer) },
101 offsetof(NSS_TBSCertificat
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_asn1/Security/
H A DosKeyTemplates.c37 { SEC_ASN1_INTEGER, offsetof(NSS_DSAAlgParams,p) },
38 { SEC_ASN1_INTEGER, offsetof(NSS_DSAAlgParams,q) },
39 { SEC_ASN1_INTEGER, offsetof(NSS_DSAAlgParams,g) },
46 { SEC_ASN1_INTEGER, offsetof(NSS_DSAAlgParamsBSAFE,keySizeInBits) },
47 { SEC_ASN1_INTEGER, offsetof(NSS_DSAAlgParamsBSAFE,p) },
48 { SEC_ASN1_INTEGER, offsetof(NSS_DSAAlgParamsBSAFE,q) },
49 { SEC_ASN1_INTEGER, offsetof(NSS_DSAAlgParamsBSAFE,g) },
56 { SEC_ASN1_OBJECT_ID, offsetof(NSS_DSAAlgorithmIdX509, algorithm) },
59 offsetof(NSS_DSAAlgorithmIdX509,params),
67 { SEC_ASN1_OBJECT_ID, offsetof(NSS_DSAAlgorithmIdBSAF
[all...]
H A DcsrTemplates.c33 { SEC_ASN1_INTEGER, offsetof(NSSCertRequestInfo,version) },
35 offsetof(NSSCertRequestInfo,subject),
38 offsetof(NSSCertRequestInfo,subjectPublicKeyInfo),
41 offsetof(NSSCertRequestInfo,attributes),
49 offsetof(NSSCertRequest,reqInfo),
52 offsetof(NSSCertRequest,signatureAlgorithm),
54 { SEC_ASN1_BIT_STRING, offsetof(NSSCertRequest,signature) },
61 offsetof(NSS_SignedCertRequest,certRequestBlob),
64 offsetof(NSS_SignedCertRequest,signatureAlgorithm),
66 { SEC_ASN1_BIT_STRING, offsetof(NSS_SignedCertReques
[all...]
H A DX509Templates.c59 offsetof(NSS_Validity,notBefore.item),
62 offsetof(NSS_Validity,notAfter.item),
72 offsetof(NSS_CertExtension,extnId) },
74 offsetof(NSS_CertExtension,critical) },
76 offsetof(NSS_CertExtension,value) },
91 offsetof(NSS_TBSCertificate,version),
95 offsetof(NSS_TBSCertificate,serialNumber) },
97 offsetof(NSS_TBSCertificate,signature),
99 { SEC_ASN1_SAVE, offsetof(NSS_TBSCertificate,derIssuer) },
101 offsetof(NSS_TBSCertificat
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_asn1/lib/
H A DosKeyTemplates.c37 { SEC_ASN1_INTEGER, offsetof(NSS_DSAAlgParams,p) },
38 { SEC_ASN1_INTEGER, offsetof(NSS_DSAAlgParams,q) },
39 { SEC_ASN1_INTEGER, offsetof(NSS_DSAAlgParams,g) },
46 { SEC_ASN1_INTEGER, offsetof(NSS_DSAAlgParamsBSAFE,keySizeInBits) },
47 { SEC_ASN1_INTEGER, offsetof(NSS_DSAAlgParamsBSAFE,p) },
48 { SEC_ASN1_INTEGER, offsetof(NSS_DSAAlgParamsBSAFE,q) },
49 { SEC_ASN1_INTEGER, offsetof(NSS_DSAAlgParamsBSAFE,g) },
56 { SEC_ASN1_OBJECT_ID, offsetof(NSS_DSAAlgorithmIdX509, algorithm) },
59 offsetof(NSS_DSAAlgorithmIdX509,params),
67 { SEC_ASN1_OBJECT_ID, offsetof(NSS_DSAAlgorithmIdBSAF
[all...]
H A DcsrTemplates.c33 { SEC_ASN1_INTEGER, offsetof(NSSCertRequestInfo,version) },
35 offsetof(NSSCertRequestInfo,subject),
38 offsetof(NSSCertRequestInfo,subjectPublicKeyInfo),
41 offsetof(NSSCertRequestInfo,attributes),
49 offsetof(NSSCertRequest,reqInfo),
52 offsetof(NSSCertRequest,signatureAlgorithm),
54 { SEC_ASN1_BIT_STRING, offsetof(NSSCertRequest,signature) },
61 offsetof(NSS_SignedCertRequest,certRequestBlob),
64 offsetof(NSS_SignedCertRequest,signatureAlgorithm),
66 { SEC_ASN1_BIT_STRING, offsetof(NSS_SignedCertReques
[all...]
H A DX509Templates.c59 offsetof(NSS_Validity,notBefore.item),
62 offsetof(NSS_Validity,notAfter.item),
72 offsetof(NSS_CertExtension,extnId) },
74 offsetof(NSS_CertExtension,critical) },
76 offsetof(NSS_CertExtension,value) },
91 offsetof(NSS_TBSCertificate,version),
95 offsetof(NSS_TBSCertificate,serialNumber) },
97 offsetof(NSS_TBSCertificate,signature),
99 { SEC_ASN1_SAVE, offsetof(NSS_TBSCertificate,derIssuer) },
101 offsetof(NSS_TBSCertificat
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_asn1/security_asn1/
H A DosKeyTemplates.c37 { SEC_ASN1_INTEGER, offsetof(NSS_DSAAlgParams,p) },
38 { SEC_ASN1_INTEGER, offsetof(NSS_DSAAlgParams,q) },
39 { SEC_ASN1_INTEGER, offsetof(NSS_DSAAlgParams,g) },
46 { SEC_ASN1_INTEGER, offsetof(NSS_DSAAlgParamsBSAFE,keySizeInBits) },
47 { SEC_ASN1_INTEGER, offsetof(NSS_DSAAlgParamsBSAFE,p) },
48 { SEC_ASN1_INTEGER, offsetof(NSS_DSAAlgParamsBSAFE,q) },
49 { SEC_ASN1_INTEGER, offsetof(NSS_DSAAlgParamsBSAFE,g) },
56 { SEC_ASN1_OBJECT_ID, offsetof(NSS_DSAAlgorithmIdX509, algorithm) },
59 offsetof(NSS_DSAAlgorithmIdX509,params),
67 { SEC_ASN1_OBJECT_ID, offsetof(NSS_DSAAlgorithmIdBSAF
[all...]
H A DcsrTemplates.c33 { SEC_ASN1_INTEGER, offsetof(NSSCertRequestInfo,version) },
35 offsetof(NSSCertRequestInfo,subject),
38 offsetof(NSSCertRequestInfo,subjectPublicKeyInfo),
41 offsetof(NSSCertRequestInfo,attributes),
49 offsetof(NSSCertRequest,reqInfo),
52 offsetof(NSSCertRequest,signatureAlgorithm),
54 { SEC_ASN1_BIT_STRING, offsetof(NSSCertRequest,signature) },
61 offsetof(NSS_SignedCertRequest,certRequestBlob),
64 offsetof(NSS_SignedCertRequest,signatureAlgorithm),
66 { SEC_ASN1_BIT_STRING, offsetof(NSS_SignedCertReques
[all...]
H A DX509Templates.c59 offsetof(NSS_Validity,notBefore.item),
62 offsetof(NSS_Validity,notAfter.item),
72 offsetof(NSS_CertExtension,extnId) },
74 offsetof(NSS_CertExtension,critical) },
76 offsetof(NSS_CertExtension,value) },
91 offsetof(NSS_TBSCertificate,version),
95 offsetof(NSS_TBSCertificate,serialNumber) },
97 offsetof(NSS_TBSCertificate,signature),
99 { SEC_ASN1_SAVE, offsetof(NSS_TBSCertificate,derIssuer) },
101 offsetof(NSS_TBSCertificat
[all...]
/macosx-10.10.1/libpthread-105.1.4/src/
H A Dmk_pthread_impl.c72 printf("#define __PTHREAD_sig_OFFSET__ %zd\n", offsetof(struct _pthread, sig));
73 printf("#define __PTHREAD_cleanup_stack_OFFSET__ %zd\n", offsetof(struct _pthread, __cleanup_stack));
74 printf("#define __PTHREAD_guardsize_OFFSET__ %zd\n", offsetof(struct _pthread, guardsize));
75 printf("#define __PTHREAD_param_OFFSET__ %zd\n", offsetof(struct _pthread, param));
76 printf("#define __PTHREAD_mutexes_OFFSET__ %zd\n", offsetof(struct _pthread, mutexes));
77 printf("#define __PTHREAD_joiner_OFFSET__ %zd\n", offsetof(struct _pthread, joiner));
78 printf("#define __PTHREAD_exit_value_OFFSET__ %zd\n", offsetof(struct _pthread, exit_value));
79 printf("#define __PTHREAD_death_OFFSET__ %zd\n", offsetof(struct _pthread, death));
80 printf("#define __PTHREAD_kernel_thread_OFFSET__ %zd\n", offsetof(struct _pthread, kernel_thread));
81 printf("#define __PTHREAD_fun_OFFSET__ %zd\n", offsetof(struc
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/include/security_keychain/
H A DSecPkcs8Templates.cpp38 offsetof(impExpPKCS5_PBE_Parameters,salt) },
41 offsetof(impExpPKCS5_PBE_Parameters,iterations) },
49 offsetof(impExpPKCS5_PBKDF2_Params,salt) },
52 offsetof(impExpPKCS5_PBKDF2_Params,iterationCount) },
54 offsetof(impExpPKCS5_PBKDF2_Params,keyLengthInBytes) },
56 offsetof(impExpPKCS5_PBKDF2_Params,prf) },
64 offsetof(impExpPKCS5_RC2Params,version) },
66 offsetof(impExpPKCS5_RC2Params,iv) },
74 offsetof(impExpPKCS5_RC5Params,version) },
76 offsetof(impExpPKCS5_RC5Param
[all...]

Completed in 216 milliseconds

1234567891011>>