Searched refs:ft (Results 1 - 25 of 135) sorted by relevance

123456

/macosx-10.10/ksh-23/ksh/src/lib/libast/sfio/
H A Dsftable.c45 static Fmtpos_t* sffmtpos(Sfio_t* f,const char* form,va_list args,Sffmt_t* ft,int type) argument
47 static Fmtpos_t* sffmtpos(f,form,args,ft,type)
51 Sffmt_t* ft;
66 else if(!(fp = sffmtpos(f,form,args,ft,-1)) )
137 if(fp && fp[n].ft.fmt == 0)
138 { fp[n].ft.fmt = LEFTP;
139 fp[n].ft.form = (char*)form;
192 if(fp && fp[n].ft.fmt == 0)
193 { fp[n].ft.fmt = '.';
194 fp[n].ft
[all...]
H A Dsfvscanf.c316 Sffmt_t *ft; local
364 ft = NIL(Sffmt_t*);
463 !(fp = (*_Sffmtposf)(f,oform,oargs,ft,1)) )
471 n_str = fp[n].ft.size;
473 else if(ft && ft->extf )
474 { FMTSET(ft, form,args,
477 n = (*ft->extf)
478 (f,(Void_t*)&argv,ft);
481 if(!(ft
[all...]
H A Dsfvprintf.c119 Sffmt_t *ft; /* format environment */ local
199 ft = NIL(Sffmt_t*);
267 !(fp = (*_Sffmtposf)(f,oform,oargs,ft,0)) )
275 n_str = fp[n].ft.size;
277 else if(ft && ft->extf )
278 { FMTSET(ft, form,args,
281 n = (*ft->extf)
282 (f,(Void_t*)&argv,ft);
285 if(!(ft
[all...]
/macosx-10.10/tcl-105/tcl_ext/snack/snack/demos/tcl/
H A Dmixplay.tcl26 $::map1 configure [$::ft.s1 get]
27 $::map2 configure [$::ft.s2 get]
39 set ft [frame $t.ft]
42 pack $ft
44 scale $ft.s1 -label "sound 1" -from 1.0 -to 0.0 -resolution 0.01 -command configure
45 scale $ft.s2 -label "sound 2" -from 1.0 -to 0.0 -resolution 0.01 -command configure
46 pack $ft.s1 $ft.s2 -side left
/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Dgettimeofday.c43 FILETIME ft; local
47 GetSystemTimeAsFileTime(&ft);
48 li.LowPart = ft.dwLowDateTime;
49 li.HighPart = ft.dwHighDateTime;
/macosx-10.10/llvmCore-3425.0.34/lib/Support/Windows/
H A DTimeValue.inc25 uint64_t ft;
26 GetSystemTimeAsFileTime(reinterpret_cast<FILETIME *>(&ft));
29 t.fromWin32Time(ft);
/macosx-10.10/vim-55/runtime/
H A Dscripts.vim81 set ft=zsh
85 set ft=tcl
89 set ft=expect
93 set ft=gnuplot
97 set ft=make
101 set ft=lua
105 set ft=perl6
109 set ft=perl
113 set ft=php
117 set ft
[all...]
/macosx-10.10/file_cmds-242/pax/
H A Dftree.c149 FTREE *ft; local
165 if ((ft = (FTREE *)malloc(sizeof(FTREE))) == NULL) {
172 ft->fname = str;
173 ft->refcnt = 0;
174 ft->newercnt = 0;
175 ft->chflg = chflg;
176 ft->fow = NULL;
178 fttail = fthead = ft;
181 fttail->fow = ft;
182 fttail = ft;
253 FTREE *ft; local
[all...]
/macosx-10.10/llvmCore-3425.0.34/runtime/libprofile/
H A DPathProfiling.c51 ftEntry_t* ft; variable
55 void writeArrayTable(uint32_t fNumber, ftEntry_t* ft, uint32_t* funcCount) { argument
65 for( arrayIterator = 0; arrayIterator < ft->size; arrayIterator++ ) {
66 uint32_t pc = ((uint32_t*)ft->array)[arrayIterator];
159 if( ft[functionNumber-1].array == 0)
160 ft[functionNumber-1].array = calloc(sizeof(pathHashTable_t), 1);
162 hashTable = (pathHashTable_t*)((ftEntry_t*)ft)[functionNumber-1].array;
234 if( ft[i].type == ProfilingArray ) {
235 writeArrayTable(i+1,&ft[i],header + 1);
237 } else if( ft[
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/cairo/
H A DOwnPtrCairo.cpp24 #include <cairo-ft.h>
/macosx-10.10/mDNSResponder-561.1.1/mDNSWindows/
H A DPosixCompat.c105 FILETIME ft; local
109 GetSystemTimeAsFileTime(&ft);
110 li.LowPart = ft.dwLowDateTime;
111 li.HighPart = ft.dwHighDateTime;
/macosx-10.10/BerkeleyDB-21/db/os_windows/
H A Dos_clock.c48 FILETIME ft; local
54 (void)SystemTimeToFileTime(&st, &ft);
66 memcpy(&large_int, &ft, sizeof(large_int));
/macosx-10.10/groff-38/groff/src/preproc/eqn/
H A Dtext.cpp103 static void set_special_char_type(const char *ch, int st, int ft) argument
112 if (ft >= 0)
113 p->font_type = ft;
259 void char_box::handle_char_type(int st, int ft) argument
263 if (ft >= 0)
264 char_table[c].font_type = ft;
267 void special_char_box::handle_char_type(int st, int ft) argument
269 set_special_char_type(s, st, ft);
276 int ft = lookup_font_type(type); local
277 if (st < 0 && ft <
347 handle_char_type(int st, int ft) argument
[all...]
/macosx-10.10/OpenSSL098-52/src/fips/rand/
H A Dfips_rand.c225 FILETIME ft; local
236 GetSystemTimeAsFileTime(&ft);
237 buf[0] = (unsigned char) (ft.dwHighDateTime & 0xff);
238 buf[1] = (unsigned char) ((ft.dwHighDateTime >> 8) & 0xff);
239 buf[2] = (unsigned char) ((ft.dwHighDateTime >> 16) & 0xff);
240 buf[3] = (unsigned char) ((ft.dwHighDateTime >> 24) & 0xff);
241 buf[4] = (unsigned char) (ft.dwLowDateTime & 0xff);
242 buf[5] = (unsigned char) ((ft.dwLowDateTime >> 8) & 0xff);
243 buf[6] = (unsigned char) ((ft.dwLowDateTime >> 16) & 0xff);
244 buf[7] = (unsigned char) ((ft
[all...]
/macosx-10.10/apr-32/apr/apr/time/win32/
H A Dtime.c105 FILETIME ft; local
107 AprTimeToFileTime(&ft, input);
108 FileTimeToSystemTime(&ft, &st);
121 FILETIME ft; local
123 AprTimeToFileTime(&ft, input + (offs * APR_USEC_PER_SEC));
124 FileTimeToSystemTime(&ft, &st);
138 FILETIME ft, localft; local
140 AprTimeToFileTime(&ft, input);
151 FileTimeToSystemTime(&ft, &st);
189 FileTimeToLocalFileTime(&ft,
[all...]
/macosx-10.10/emacs-93/emacs/nt/
H A Dftime-nostartup.bat9 rem prep /om /ft /sf _Fexecute_extended_command ..\src\obj\i386\pemacs
12 prep /om /ft /sf _command_loop_1 ..\src\obj\i386\pemacs
15 rem prep /om /ft ..\src\obj\i386\pemacs
H A Dftime.bat9 prep /om /ft /sf _Fexecute_extended_command ..\src\obj\i386\pemacs
12 rem prep /om /ft /sf _command_loop_1 ..\src\obj\i386\pemacs
15 rem prep /om /ft ..\src\obj\i386\pemacs
/macosx-10.10/libdispatch-442.1.4/src/
H A Dtime.c36 FILETIME ft;
38 GetSystemTimeAsFileTime(&ft);
39 li.LowPart = ft.dwLowDateTime;
40 li.HighPart = ft.dwHighDateTime;
/macosx-10.10/ruby-106/ruby/enc/
H A Dencinit.c.erb26 <%# vim: set ft=eruby sw=2 : -%>
/macosx-10.10/JavaScriptCore-7600.1.17/assembler/
H A DMIPSAssembler.h481 void addd(FPRegisterID fd, FPRegisterID fs, FPRegisterID ft) argument
483 emitInst(0x46200000 | (fd << OP_SH_FD) | (fs << OP_SH_FS) | (ft << OP_SH_FT));
486 void subd(FPRegisterID fd, FPRegisterID fs, FPRegisterID ft) argument
488 emitInst(0x46200001 | (fd << OP_SH_FD) | (fs << OP_SH_FS) | (ft << OP_SH_FT));
491 void muld(FPRegisterID fd, FPRegisterID fs, FPRegisterID ft) argument
493 emitInst(0x46200002 | (fd << OP_SH_FD) | (fs << OP_SH_FS) | (ft << OP_SH_FT));
496 void divd(FPRegisterID fd, FPRegisterID fs, FPRegisterID ft) argument
498 emitInst(0x46200003 | (fd << OP_SH_FD) | (fs << OP_SH_FS) | (ft << OP_SH_FT));
501 void lwc1(FPRegisterID ft, RegisterID rs, int offset) argument
503 emitInst(0xc4000000 | (ft << OP_SH_F
507 ldc1(FPRegisterID ft, RegisterID rs, int offset) argument
512 swc1(FPRegisterID ft, RegisterID rs, int offset) argument
517 sdc1(FPRegisterID ft, RegisterID rs, int offset) argument
580 ceqd(FPRegisterID fs, FPRegisterID ft) argument
586 cngtd(FPRegisterID fs, FPRegisterID ft) argument
592 cnged(FPRegisterID fs, FPRegisterID ft) argument
598 cltd(FPRegisterID fs, FPRegisterID ft) argument
604 cled(FPRegisterID fs, FPRegisterID ft) argument
610 cueqd(FPRegisterID fs, FPRegisterID ft) argument
616 coled(FPRegisterID fs, FPRegisterID ft) argument
622 coltd(FPRegisterID fs, FPRegisterID ft) argument
628 culed(FPRegisterID fs, FPRegisterID ft) argument
634 cultd(FPRegisterID fs, FPRegisterID ft) argument
[all...]
/macosx-10.10/tcsh-65/tcsh/
H A Dsh.exp.c632 Char *ft = cp, *dp, *ep, *strdev, *strino, *strF, *str, valtest = '\0', local
639 while(any(FILETESTS, *++ft))
642 if (!*ft && *(ft - 1) == 'L')
643 --ft;
645 if (any(FILEVALS, *ft)) {
646 valtest = *ft++;
654 if (valtest == 'P' && *ft >= '0' && *ft <= '7') {
655 pmask = (char) *ft
[all...]
/macosx-10.10/ICU-531.30/icuSources/test/intltest/
H A Dwindttst.cpp74 FILETIME ft; local
98 SystemTimeToFileTime(&st, &ft);
101 int64_t wftNow = ((int64_t) ft.dwHighDateTime << 32) + ft.dwLowDateTime;
/macosx-10.10/WebCore-7600.1.25/platform/graphics/freetype/
H A DGlyphPageTreeNodeFreeType.cpp36 #include <cairo-ft.h>
/macosx-10.10/llvmCore-3425.0.34/lib/Target/
H A DTargetMachineC.cpp170 TargetMachine::CodeGenFileType ft; local
173 ft = TargetMachine::CGFT_AssemblyFile;
176 ft = TargetMachine::CGFT_ObjectFile;
186 if (TM->addPassesToEmitFile(pass, destf, ft)) {
/macosx-10.10/vim-55/runtime/ftplugin/
H A Dishd.vim2 " Language: InstallShield (ft=ishd)

Completed in 326 milliseconds

123456