Searched refs:nfd (Results 1 - 25 of 42) sorted by relevance

12

/macosx-10.10/lukemftp-14/tnftp/libedit/
H A Drefresh.c445 char *ofd, *ols, *oe, *nfd, *nls, *ne; local
455 nfd = n;
478 while (nfd < n) {
489 if (*ofd == '\0' && *nfd == '\0') {
496 while ((o > ofd) && (n > nfd) && (*--o == *--n))
510 * case 1: insert: scan from nfd to nls looking for *ofd
513 for (c = *ofd, n = nfd; n < nls; n++) {
524 (2 * (p - n) > n - nfd)) {
534 * case 2: delete: scan from ofd to ols looking for *nfd
536 if (*nfd) {
[all...]
/macosx-10.10/tcsh-65/tcsh/
H A Ded.refresh.c562 Char *ofd, *ols, *oe, *nfd, *nls, *ne; local
572 nfd = n;
597 while (nfd < n) {
609 if (*ofd == '\0' && *nfd == '\0') {
619 while ((o > ofd) && (n > nfd) && (*--o == *--n))
641 * case 1: insert: scan from nfd to nls looking for *ofd
644 for (c = *ofd, n = nfd; n < nls; n++) {
652 if (((nse - nsb) < (p - n)) && (2 * (p - n) > n - nfd)) {
663 * case 2: delete: scan from ofd to ols looking for *nfd
665 if (*nfd) {
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/libedit/src/
H A Drefresh.c504 Char *ofd, *ols, *oe, *nfd, *nls, *ne; local
515 nfd = n;
538 while (nfd < n) {
549 if (*ofd == '\0' && *nfd == '\0') {
556 while ((o > ofd) && (n > nfd) && (*--o == *--n))
570 * case 1: insert: scan from nfd to nls looking for *ofd
573 for (c = *ofd, n = nfd; n < nls; n++) {
584 (2 * (p - n) > n - nfd)) {
594 * case 2: delete: scan from ofd to ols looking for *nfd
596 if (*nfd) {
[all...]
/macosx-10.10/libedit-40/src/
H A Drefresh.c504 Char *ofd, *ols, *oe, *nfd, *nls, *ne; local
515 nfd = n;
538 while (nfd < n) {
549 if (*ofd == '\0' && *nfd == '\0') {
556 while ((o > ofd) && (n > nfd) && (*--o == *--n))
570 * case 1: insert: scan from nfd to nls looking for *ofd
573 for (c = *ofd, n = nfd; n < nls; n++) {
584 (2 * (p - n) > n - nfd)) {
594 * case 2: delete: scan from ofd to ols looking for *nfd
596 if (*nfd) {
[all...]
/macosx-10.10/tcl-105/tcl_ext/tclvfs/tclvfs/library/
H A Dtclprocvfs.tcl86 set nfd [vfs::memchan]
87 fconfigure $nfd -translation binary
88 puts -nonewline $nfd [_generate ::${ns}::${name}]
89 fconfigure $nfd -translation auto
90 seek $nfd 0
91 return [list $nfd]
H A Dtkvfs.tcl74 set nfd [vfs::memchan]
75 fconfigure $nfd -translation binary
76 puts -nonewline $nfd [_generate ${widg}.${name}]
77 fconfigure $nfd -translation auto
78 seek $nfd 0
79 return [list $nfd]
H A Dtarvfs.tcl108 set nfd [vfs::memchan]
109 fconfigure $nfd -translation binary
115 puts -nonewline $nfd $data
117 fconfigure $nfd -translation auto
118 seek $nfd 0
119 return [list $nfd]
H A Dzipvfs.tcl110 set nfd [vfs::memchan]
111 fconfigure $nfd -translation binary
116 puts -nonewline $nfd $data
118 fconfigure $nfd -translation auto
119 seek $nfd 0
120 return [list $nfd]
/macosx-10.10/ruby-106/ruby/ext/nkf/nkf-utf8/
H A Dutf8tbl.h54 const unsigned char nfd[NORMALIZATION_TABLE_NFD_LENGTH]; member in struct:normalization_pair
/macosx-10.10/bash-94.1.2/bash-3.2/
H A Dinput.c223 int nfd; local
233 nfd = (new_fd == -1) ? fcntl (fd, F_DUPFD, 10) : new_fd;
234 if (nfd == -1)
241 if (buffers[nfd])
245 internal_error (_("save_bash_input: buffer already exists for new fd %d"), nfd);
246 free_buffered_stream (buffers[nfd]);
252 bash_input.location.buffered_fd = nfd;
253 fd_to_buffered_stream (nfd);
266 default_buffered_input = nfd;
268 SET_CLOSE_ON_EXEC (nfd);
[all...]
/macosx-10.10/bash-94.1.2/bash-3.2/lib/readline/
H A Ddisplay.c1216 register char *ofd, *ols, *oe, *nfd, *nls, *ne; local
1316 nfd = new + temp;
1326 nfd = new + nmax;
1331 for (ofd = old, nfd = new;
1338 nfd = new + new_offset;
1345 for (ofd = old, nfd = new;
1346 (ofd - old < omax) && *ofd && (*ofd == *nfd);
1347 ofd++, nfd++)
1354 for (nd = nfd - new, ne = nfd; n
[all...]
/macosx-10.10/ICU-531.30/icuSources/common/
H A Duprops.cpp110 UnicodeString nfd; local
116 if(nfcNorm2->getDecomposition(c, nfd)) {
118 if(nfd.length()==1) {
119 c=nfd[0]; /* single BMP code point */
120 } else if(nfd.length()<=U16_MAX_LENGTH &&
121 nfd.length()==U16_LENGTH(c=nfd.char32At(0))
140 nfd.getBuffer(), nfd.length(),
143 0!=u_strCompare(nfd
[all...]
H A Dcaniter.cpp74 nfd(*Normalizer2Factory::getNFDInstance(status)),
173 nfd.normalize(newSource, source, status);
382 nfd.normalize(possible, attempt, status);
510 nfd.normalize(temp, decompString, status);
567 nfd.normalize(temp, trial, status);
/macosx-10.10/ICU-531.30/icuSources/common/unicode/
H A Dcaniter.h181 const Normalizer2 &nfd; member in class:CanonicalIterator
/macosx-10.10/netcat-22/
H A Dnetcat.c871 readwrite(int nfd) argument
893 pfd[0].fd = nfd;
912 FD_SET(nfd, &readfds);
919 if ((n = select(nfd + 1, &readfds, NULL, NULL, (timeout == -1) ? NULL : &tv)) < 0) {
923 close(nfd);
931 if (FD_ISSET(nfd, &readfds)) {
935 if ((n = read(nfd, buf, plen)) < 0)
938 shutdown(nfd, SHUT_RD);
947 atelnet(nfd, buf, n);
961 shutdown(nfd, SHUT_W
985 atelnet(int nfd, unsigned char *buf, unsigned int size) argument
[all...]
/macosx-10.10/curl-83.1.2/curl/tests/server/
H A Dsockfilt.c672 DWORD nfd = 0, thd = 0, wsa = 0; local
742 handles[nfd] = 0;
755 fdarr[nfd] = curlx_sitosk(fds);
759 handles[nfd] = handle;
764 handles[nfd] = GetStdHandle(STD_OUTPUT_HANDLE);
767 handles[nfd] = GetStdHandle(STD_ERROR_HANDLE);
775 handles[nfd] = handle;
784 handles[nfd] = handle;
790 nfd++;
803 wait = WaitForMultipleObjectsEx(nfd, handle
[all...]
/macosx-10.10/remote_cmds-47/rshd.tproj/
H A Drshd.c260 int cc, fd, nfd, pv[2], pid, s; local
675 nfd = pv[0];
677 nfd = s;
684 nfd = MAX(nfd, pv2[0]);
685 nfd = MAX(nfd, pv1[0]);
691 nfd++;
697 if (select(nfd, &ready,
703 if (select(nfd,
[all...]
/macosx-10.10/ICU-531.30/icuSources/test/cintltst/
H A Dcnormtst.c665 UChar nfd[100]; local
683 nfd, 100, &status);
688 if (nfdsize != normsize || u_memcmp(nfd, norm, nfdsize) != 0) {
1147 nfd[]={ /* + separates expected output pieces */ local
1193 _testIter(src, sizeof(src)/U_SIZEOF_UCHAR, &iter, UNORM_NFD, TRUE, nfd, sizeof(nfd)/U_SIZEOF_UCHAR, nfdIndexes, sizeof(nfdIndexes)/4);
1204 _testIter(src, sizeof(src)/U_SIZEOF_UCHAR, &iter, UNORM_NFD, FALSE, nfd, sizeof(nfd)/U_SIZEOF_UCHAR, nfdIndexes, sizeof(nfdIndexes)/4);
1244 if(U_FAILURE(errorCode) || length!=2 || buffer[0]!=nfd[2] || buffer[1]!=nfd[
1360 UChar s[U16_MAX_LENGTH], nfd[16]; local
[all...]
/macosx-10.10/dcerpc-61/dcerpc/ncklib/
H A Dcomnlsn.c144 # define RPC_SELECT_FDSET_COPY(src_fd_set,dst_fd_set,nfd) { \
148 for (i = 0; i < (nfd); i += RPC_C_SELECT_NFDBITS) \
/macosx-10.10/remote_cmds-47/rlogind.tproj/
H A Drlogind.c442 int cc, nfd, n; local
453 nfd = f + 1;
455 nfd = p + 1;
456 if (nfd > FD_SETSIZE) {
480 if ((n = select(nfd, &ibits, omask, &ebits, 0)) < 0) {
/macosx-10.10/xnu-2782.1.97/bsd/kern/
H A Dsys_generic.c936 int nfd, int32_t *retval, int sel_pass, wait_queue_sub_t wqsub);
937 static int selcount(struct proc *p, u_int32_t *ibits, int nfd, int *count);
938 static int seldrop_locked(struct proc *p, u_int32_t *ibits, int nfd, int lim, int *need_wakeup, int fromselcount);
939 static int seldrop(struct proc *p, u_int32_t *ibits, int nfd);
1284 * nfd The number of file descriptors to scan
1296 selscan(struct proc *p, struct _select *sel, struct _select_data * seldata, int nfd, int32_t *retval, argument
1326 nw = howmany(nfd, NFDBITS);
1337 for (i = 0; i < nfd; i += NFDBITS) {
1340 while ((j = ffs(bits)) && (fd = i + --j) < nfd) {
1621 * nfd Th
1637 selcount(struct proc *p, u_int32_t *ibits, int nfd, int *countp) argument
1732 seldrop_locked(struct proc *p, u_int32_t *ibits, int nfd, int lim, int *need_wakeup, int fromselcount) argument
1812 seldrop(struct proc *p, u_int32_t *ibits, int nfd) argument
[all...]
/macosx-10.10/ICU-531.30/icuSources/i18n/
H A Dcollationbuilder.cpp212 : nfd(*Normalizer2::getNFDInstance(errorCode)),
312 UnicodeString nfdString = nfd.normalize(str, errorCode);
663 nfd.normalize(prefix, nfdPrefix, errorCode);
669 UnicodeString nfdString = nfd.normalize(str, errorCode);
742 UnicodeString nfdExtension = nfd.normalize(extension, errorCode);
1143 if(nfd.getCombiningClass(lastStarter) == 0) { break; }
1162 nfd.getDecomposition(composite, decomp);
1238 sourceCC = nfd.getCombiningClass(sourceChar);
1244 decompCC = nfd.getCombiningClass(decompChar);
1278 U_ASSERT(nfd
[all...]
H A Dcollationruleparser.h178 const Normalizer2 &nfd, &nfc; member in class:CollationRuleParser
H A Dusrchimp.h172 const icu::Normalizer2 *nfd; member in struct:UStringSearch
/macosx-10.10/lukemftp-14/tnftp/src/
H A Dftp.c528 int nr, nfd; local
531 nfd = 0;
533 pfd[nfd].fd = fileno(cin);
534 pfd[nfd++].events = POLLIN;
538 pfd[nfd].fd = fileno(din);
539 pfd[nfd++].events = POLLIN;
542 if ((nr = ftp_poll(pfd, nfd, sec * 1000)) <= 0)
546 nfd = 0;
548 nr |= (pfd[nfd++].revents & POLLIN) ? 1 : 0;
550 nr |= (pfd[nfd
[all...]

Completed in 309 milliseconds

12