Searched refs:rtn (Results 101 - 125 of 144) sorted by relevance

123456

/macosx-10.9.5/Security-55471.14.18/libsecurity_cryptkit/lib/
H A DfeeECDSA.c617 int rtn;
619 rtn = byteRepToSig(sigData,
627 if(rtn == 0) {
/macosx-10.9.5/security_ocspd-55118.2/server/
H A DcrlRefresh.cpp203 uint32 &rtn);
301 uint32 &rtn)
310 rtn = *(uint32 *)val->Data;
299 fetchIntAttr( unsigned dex, uint32 &rtn) argument
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/compat/libtiff/contrib/win_dib/
H A DTiffile.cpp62 int rtn = 0; local
72 rtn = 1;
79 return rtn;
/macosx-10.9.5/Security-55471.14.18/include/security_cdsa_utils/
H A DcuCdsaUtils.cpp614 uint32 rtn = 0; local
618 rtn |= DER_Data->Data[i];
622 rtn <<= 8;
624 return rtn;
/macosx-10.9.5/Security-55471.14.18/libsecurity_cdsa_utils/lib/
H A DcuCdsaUtils.cpp614 uint32 rtn = 0; local
618 rtn |= DER_Data->Data[i];
622 rtn <<= 8;
624 return rtn;
/macosx-10.9.5/Security-55471.14.18/libsecurity_mds/lib/
H A DMDSAttrStrings.cpp664 unsigned rtn = 0; local
666 rtn <<= 4;
667 rtn |= hexDigit(*str++);
669 return rtn;
/macosx-10.9.5/Security-55471.14.18/sec/Security/
H A Dp12import.c123 uint32_t rtn = 0; local
127 rtn = (rtn << 8) | *cp++;
129 *u = rtn;
/macosx-10.9.5/WebCore-7537.78.1/platform/wince/
H A DFileSystemWinCE.cpp66 bool rtn = GetFileInformationByHandle(hFile, &fileInfo) ? true : false;
69 return rtn;
/macosx-10.9.5/network_cmds-433/arp.tproj/
H A Darp.c167 int rtn = 0; local
242 rtn = get(argv[0]);
251 rtn = set(argc, argv) ? 1 : 0;
279 rtn = delete(argv[0], do_proxy);
285 rtn = file(argv[0]);
289 return (rtn);
/macosx-10.9.5/ruby-104/ruby/ext/curses/
H A Dcurses.c676 char *rtn = (char *)arg; local
678 getnstr(rtn,GETSTR_BUF_SIZE-1);
680 getstr(rtn);
694 char rtn[GETSTR_BUF_SIZE]; local
697 rb_thread_call_without_gvl(getstr_func, rtn, RUBY_UBF_IO, 0);
698 return rb_locale_str_new_cstr(rtn);
1991 char rtn[GETSTR_BUF_SIZE]; member in struct:wgetstr_arg
1999 wgetnstr(arg->win, arg->rtn, GETSTR_BUF_SIZE-1);
2001 wgetstr(arg->win, arg->rtn);
2021 return rb_locale_str_new_cstr(arg.rtn);
[all...]
/macosx-10.9.5/IOKitUser-907.100.13/
H A DIOKitLib.c1384 kern_return_t rtn; local
1417 rtn = io_connect_method_var_output(
1429 return (rtn);
1442 rtn = io_connect_method(connection, selector,
1457 return rtn;
1476 kern_return_t rtn; local
1515 rtn = io_connect_async_method(connection, wakePort,
1532 return rtn;
2685 kern_return_t rtn = io_connect_method_scalarI_scalarO(connection, selector, local
2687 inputCnt = (rtn
2745 kern_return_t rtn = io_async_method_scalarI_scalarO( local
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_csp/open_ssl/opensslUtils/
H A DopensslAsn1.cpp68 BIGNUM *rtn; local
70 rtn = BN_bin2bn(cdata.Data, (int)cdata.Length, bn);
71 if(rtn == NULL) {
109 unsigned rtn = 0; local
112 rtn = (rtn << 8) | *cp++;
114 return rtn;
/macosx-10.9.5/emacs-92/emacs/lisp/textmodes/
H A Dreftex-ref.el532 offset rtn key data last-data entries)
582 (setq rtn
589 (setq key (car rtn)
590 data (nth 1 rtn)
591 last-data (nth 2 rtn)
H A Dorg.el3852 rtn)
3856 (add-to-list 'rtn (downcase (org-match-string-no-properties 1))))
3857 rtn)))
8852 rtn line i fm efm lfmt h)
8860 (push (or (plist-get p :tstart) "ERROR: no :tstart") rtn))
8866 (progn (if hline (push hline rtn))
8883 (push (apply 'format lfmt line) rtn)
8888 rtn))))
8891 (push (or (plist-get p :tend) "ERROR: no :tend") rtn))
8893 (mapconcat 'identity (nreverse rtn) "\
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/progmodes/
H A Didlwave.el6258 class rtn)
6260 (if (setq rtn (idlwave-rinfo-assq name type (pop classes) list))
6262 rtn))
6311 (let (rtn elt)
6313 (push elt rtn)
6315 (nreverse rtn)))
6322 (let (rtn)
6327 (push (nth 2 x) rtn)))
6329 (idlwave-uniquify rtn))))
6338 (let (rtn)
6929 (defvar rtn) function
[all...]
H A Didlw-help.el1206 (let (rtn)
1209 (setq rtn (cons (car list) rtn)))
1211 (nreverse rtn)))
/macosx-10.9.5/Security-55471.14.18/libsecurity_ssl/Security/
H A DappleCdsa.c309 CSSM_DATA_PTR rtn = (CSSM_DATA_PTR)stAppMalloc(sizeof(CSSM_DATA), NULL); local
311 if(rtn == NULL) {
314 rtn->Length = size;
316 rtn->Data = NULL;
319 rtn->Data = (uint8 *)stAppMalloc(size, NULL);
321 return rtn;
1328 sslErrorLog("***sslVerifyCertChain: SecPolicySearchCreate rtn %d\n",
1334 sslErrorLog("***sslVerifyCertChain: SecPolicySearchCopyNext rtn %d\n",
1356 sslErrorLog("***sslVerifyCertChain: SecPolicySetValue rtn %d\n",
1365 "rtn
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_ssl/lib/
H A DappleCdsa.c309 CSSM_DATA_PTR rtn = (CSSM_DATA_PTR)stAppMalloc(sizeof(CSSM_DATA), NULL); local
311 if(rtn == NULL) {
314 rtn->Length = size;
316 rtn->Data = NULL;
319 rtn->Data = (uint8 *)stAppMalloc(size, NULL);
321 return rtn;
1328 sslErrorLog("***sslVerifyCertChain: SecPolicySearchCreate rtn %d\n",
1334 sslErrorLog("***sslVerifyCertChain: SecPolicySearchCopyNext rtn %d\n",
1356 sslErrorLog("***sslVerifyCertChain: SecPolicySetValue rtn %d\n",
1365 "rtn
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_ssl/security_ssl/
H A DappleCdsa.c309 CSSM_DATA_PTR rtn = (CSSM_DATA_PTR)stAppMalloc(sizeof(CSSM_DATA), NULL); local
311 if(rtn == NULL) {
314 rtn->Length = size;
316 rtn->Data = NULL;
319 rtn->Data = (uint8 *)stAppMalloc(size, NULL);
321 return rtn;
1328 sslErrorLog("***sslVerifyCertChain: SecPolicySearchCreate rtn %d\n",
1334 sslErrorLog("***sslVerifyCertChain: SecPolicySearchCopyNext rtn %d\n",
1356 sslErrorLog("***sslVerifyCertChain: SecPolicySetValue rtn %d\n",
1365 "rtn
[all...]
/macosx-10.9.5/tcl-102/tcl/tcl/win/
H A DtclWinSock.c1794 int boolVar, rtn; local
1802 rtn = setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE,
1804 if (rtn != 0) {
1815 int boolVar, rtn;
1823 rtn = setsockopt(sock, IPPROTO_TCP, TCP_NODELAY,
1825 if (rtn != 0) {
1773 int boolVar, rtn; local
/macosx-10.9.5/xnu-2422.115.4/iokit/Kernel/
H A DIODMACommand.cpp1037 IOReturn rtn; local
1045 rtn = kIOReturnSuccess;
1068 rtn = memory->dmaCommandOperation(mdOp, fState, sizeof(fState));
1072 if (rtn == kIOReturnSuccess)
1083 else if (rtn == kIOReturnOverrun)
1086 return rtn;
/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_csp/lib/
H A DRSA_DSA_utils.cpp614 int rtn = BN_mod_exp(dsaKey->pub_key, local
620 if(rtn == 0) {
/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_x509_tp/lib/
H A DTPDatabase.cpp326 int rtn = tpTimeToCssmTimestring(verifyTime, (unsigned)strlen(verifyTime), timeStr); local
327 if(rtn) {
/macosx-10.9.5/dcerpc-58/dcerpc/idl_compiler/
H A Ddriver.c112 #define CALL(rtn) \
114 status = rtn; \
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/PyObjCTest/
H A Dtest2_dict_interface.py186 rtn = chr(self.i)
188 return rtn

Completed in 320 milliseconds

123456