Searched refs:final (Results 226 - 250 of 384) sorted by relevance

1234567891011>>

/macosx-10.10.1/apr-32/apr/apr/file_io/unix/
H A Dreadwrite.c406 char *final = str + len - 1; local
432 while (str < final) { /* leave room for trailing '\0' */
454 while (str < final) { /* leave room for trailing '\0' */
/macosx-10.10.1/llvmCore-3425.0.34/utils/release/
H A Dtest-release.sh46 echo " -final The final release candidate."
72 -final | --final )
73 RC=final
/macosx-10.10.1/CommonCrypto-60061/libcn/
H A Dcrc.h71 cccrc_final_p final; member in struct:crcFuncs_t
/macosx-10.10.1/CommonCrypto-60061/test/CommonCrypto/
H A DCommonCryptoOutputLength.c17 testOutputLength(CCOperation op, CCMode mode, CCAlgorithm alg, size_t keyLength, CCPadding padding, size_t bufferPos, size_t inputLength, bool final, size_t expectedLen)
31 retval = CCCryptorGetOutputLength(cryptorRef, inputLength, final);
/macosx-10.10.1/MITKerberosShim-66/profile/
H A Dprof_tree.c35 unsigned int final:1; /* Indicate don't search next file */ member in struct:profile_node
191 * Set the final flag on a particular node.
197 node->final = 1;
202 * Check the final flag on a node
206 return (node->final != 0);
541 if (p->final)
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/gtk/
H A DPageClientImpl.h110 virtual WebFullScreenManagerProxyClient& fullScreenManagerProxyClient() final; member in class:WebKit::PageClientImpl
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/amazon-s3/
H A Dxsxp.tcl30 # The third thru final values are recursively PXML values.
120 -ignorewhitespace 1 -final 1
/macosx-10.10.1/tcl-105/tcl_ext/tdom/tdom/generic/
H A Dtclexpat.h120 int final; /* input data complete? */ member in struct:TclGenExpatInfo
/macosx-10.10.1/OpenSSH-189/osslshim/ossl/
H A Dossl-evp.h272 unsigned char final[EVP_MAX_BLOCK_LENGTH]; member in struct:ossl_CIPHER_CTX
286 ossl_evp_md_final final; member in struct:ossl_evp_md
/macosx-10.10.1/pcre-7/pcre/
H A Dmakevp.bat6 :: PH 29-03-07 hopefully the final rename to makevp_c and makevp_l
/macosx-10.10.1/tcl-105/tcl_ext/xotcl/xotcl/library/xml/TclExpat-1.1/
H A Dtclexpat.c36 int final; /* input data complete? */ member in struct:TclExpatInfo
305 expat->final = 1;
490 expat->final);
546 "-final",
576 case EXPAT_FINAL: /* -final */
582 if (bool && !expat->final) {
584 expat->final = bool;
587 } else if (!bool && expat->final) {
/macosx-10.10.1/tcl-105/tcl_ext/tclxml/tclxml/library/
H A Dsgmlparser.tcl96 -final 1 \
122 # -final boolean True if no more data is to be supplied
129 array set options {-final 1}
131 set options(-final) [Boolean $options(-final)]
133 # If the data is not final then there must be a variable to store
135 if {!$options(-final) && ![info exists options(-statevariable)]} {
136 return -code error {option "-statevariable" required if not final}
154 # Mats: Several rewrites here to handle -final 0 option.
185 # Mats: This fails if not -final an
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/test/scr023/
H A Dq.c692 char *final; /* final state. */ member in struct:__anon377
775 ops[i].init, ops[i].final,
807 ops[i].final);
810 result = qfns[t].f_verify(list, ops[i].final);
818 ops[i].init, ops[i].final,
/macosx-10.10.1/CommonCrypto-60061/lib/
H A DcorecryptoSymmetricBridge.c495 static size_t ccpkcs7_padlen(int encrypting, const cc2CCModeDescriptor *modeptr, const corecryptoMode modeObj, size_t inputLength, bool final) argument
499 if(final) {
589 static size_t ccctsX_padlen(int encrypting, const cc2CCModeDescriptor *modeptr, const corecryptoMode modeObj, size_t inputLength, bool final) argument
593 if(final) {
656 static size_t ccnopad_padlen(int encrypting, const cc2CCModeDescriptor *modeptr, const corecryptoMode modeObj, size_t inputLength, bool final) argument
H A DCommonCryptor.c297 static inline size_t ccGetPadOutputlen(CCCryptor *cryptor, size_t inputLength, bool final) { argument
299 return cryptor->padptr->padlen(cryptor->op == kCCEncrypt, cryptor->modeDesc, cryptor->symMode[cryptor->op], totalLen, final);
646 static inline size_t ccGetOutputLength(CCCryptor *cryptor, size_t inputLength, bool final) { argument
648 return ccGetPadOutputlen(cryptor, inputLength, final);
654 bool final)
659 return ccGetOutputLength(cryptor, inputLength, final);
651 CCCryptorGetOutputLength( CCCryptorRef cryptorRef, size_t inputLength, bool final) argument
/macosx-10.10.1/ruby-106/ruby/
H A Dsiphash.c143 void (*final)(sip_state *s, uint64_t *digest); member in struct:sip_interface_st
345 h->methods->final(h->state, &digest64);
357 h->methods->final(h->state, digest);
/macosx-10.10.1/tcl-105/tcl_ext/tclxml/tclxml/
H A Dtclexpat.c50 char *data, int len, int final));
374 TclExpatParse(clientData, data, len, final)
385 final);
/macosx-10.10.1/ruby-106/ruby/test/zlib/
H A Dtest_zlib.rb60 final = z.finish
62 assert_equal 7253, final.length
64 chunks << final
86 final = z.finish
88 assert_equal 3632, final.length
91 all << final
/macosx-10.10.1/OpenSSL098-52/src/fips/rsa/
H A Dfips_rsa_sign.c430 static int final(EVP_MD_CTX *ctx,unsigned char *md) function
441 final,
/macosx-10.10.1/Security-57031.1.35/SecurityTests/testclient/
H A Ddltests.cpp282 encrypt.final(remcipher);
300 decrypt.final(remplain);
/macosx-10.10.1/bind9-45.101/bind9/bin/tests/hashes/
H A Dt_hashes.c314 t_hash(const char *hname, HASH_INIT init, UPDATE update, FINAL final, argument
326 final(&ctx, dbuf.b);
/macosx-10.10.1/libxml2-26/libxml2/
H A Dpattern.c1450 printf("final ");
1667 * the last step will be marked as "final" and only
1668 * "final" nodes are added to the resulting set.
1860 int ret = 0, err = 0, final = 0, tmp, i, m, match, stepNr, desc; local
2049 final = step.flags & XML_STREAM_STEP_FINAL;
2051 if (final) {
2059 if (final) {
2075 ((! match) || final)) {
2164 final = step.flags & XML_STREAM_STEP_FINAL;
2166 if (final)
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A Dpattern.c1446 printf("final ");
1663 * the last step will be marked as "final" and only
1664 * "final" nodes are added to the resulting set.
1856 int ret = 0, err = 0, final = 0, tmp, i, m, match, stepNr, desc; local
2045 final = step.flags & XML_STREAM_STEP_FINAL;
2047 if (final) {
2055 if (final) {
2071 ((! match) || final)) {
2160 final = step.flags & XML_STREAM_STEP_FINAL;
2162 if (final)
[all...]
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.25/lib/HTTP/Proxy/BodyFilter/
H A Dsimple.pm151 its final length).
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.300/lib/HTTP/Proxy/BodyFilter/
H A Dsimple.pm151 its final length).

Completed in 205 milliseconds

1234567891011>>