Home
last modified time | relevance | path

Searched refs:fptr (Results 1 – 9 of 9) sorted by relevance

/reactos/dll/win32/dbghelp/
H A Dpath.c173 PCWSTR fptr; in SymMatchFileNameW() local
179 fptr = file + lstrlenW(file) - 1; in SymMatchFileNameW()
182 while (fptr >= file && mptr >= match) in SymMatchFileNameW()
184 if (towupper(*fptr) != towupper(*mptr) && !(is_sep(*fptr) && is_sep(*mptr))) in SymMatchFileNameW()
186 fptr--; mptr--; in SymMatchFileNameW()
201 PCSTR fptr; in SymMatchFileName() local
206 fptr = file + strlen(file) - 1; in SymMatchFileName()
209 while (fptr >= file && mptr >= match) in SymMatchFileName()
211 if (toupper(*fptr) != toupper(*mptr) && !(is_sepA(*fptr) && is_sepA(*mptr))) in SymMatchFileName()
213 fptr--; mptr--; in SymMatchFileName()
[all …]
/reactos/dll/opengl/glu32/src/libnurbs/internals/
H A Dtobezier.cc377 Knot_ptr fptr = sbegin; in factors() local
389 *(fptr++) = (kv - *kh) / (*kt - *kh); in factors()
405 Knot_ptr fptr = sbegin; in insert() local
413 pt_oo_sum( p1, p1, p2, *fptr, 1.0-*fptr ); in insert()
414 fptr++; in insert()
431 pt_oo_sum( p1, p1, p2, *fptr, 1.0-*fptr ); in insert()
432 fptr++; in insert()
/reactos/sdk/tools/fatten/fatfs/
H A Dff.c2607 remain = fp->fsize - fp->fptr; in f_read()
2709 if (fp->fptr + btw < fp->fptr) btw = 0; /* File size cannot reach 4GB */ in f_write()
2776 if (fp->fptr < fp->fsize && in f_write()
2796 if (fp->fptr > fp->fsize) fp->fsize = fp->fptr; /* Update file size if needed */ in f_write()
3109 ifptr = fp->fptr; in f_lseek()
3110 fp->fptr = nsect = 0; in f_lseek()
3116 ofs -= fp->fptr; in f_lseek()
3144 fp->fptr += bcs; in f_lseek()
3147 fp->fptr += ofs; in f_lseek()
3171 fp->fsize = fp->fptr; in f_lseek()
[all …]
H A Dff.h119 DWORD fptr; /* File read/write pointer (Zeroed on file open) */ member
245 #define f_eof(fp) ((int)((fp)->fptr == (fp)->fsize))
247 #define f_tell(fp) ((fp)->fptr)
/reactos/sdk/include/reactos/libs/libxml/
H A Dhash.h56 #define XML_CAST_FPTR(fptr) fptr argument
/reactos/dll/win32/comdlg32/
H A Dfiledlg31.c150 static LPCWSTR FD31_GetFileType(LPCWSTR cfptr, LPCWSTR fptr, const WORD index) in FD31_GetFileType() argument
162 if (fptr) in FD31_GetFileType()
163 for ( ;(n = lstrlenW(fptr)) != 0; i++) in FD31_GetFileType()
165 fptr += n + 1; in FD31_GetFileType()
167 return fptr; in FD31_GetFileType()
168 fptr += lstrlenW(fptr) + 1; in FD31_GetFileType()
/reactos/modules/rosapps/applications/sysutils/utils/sdkparse/
H A Dsdkparse.cpp803 bool fptr = false; in parse_param() local
818 fptr = true; in parse_param()
821 if ( !fptr ) in parse_param()
825 if ( !fptr ) in parse_param()
/reactos/sdk/include/reactos/libs/libxslt/
H A DxsltInternals.h1835 #define XML_CAST_FPTR(fptr) fptr argument
/reactos/dll/opengl/mesa/
H A Ddlist.c523 GLfloat *fptr; in translate_id() local
545 fptr = (GLfloat *) list; in translate_id()
546 return (GLuint) *(fptr+n); in translate_id()