Home
last modified time | relevance | path

Searched refs:fno (Results 1 - 25 of 44) sorted by relevance

12

/third_party/FatFs/documents/res/
H A Dapp2.c12 FILINFO* fno /* Name read buffer */ in delete_node()
27 fr = f_readdir(&dir, fno); /* Get a directory item */ in delete_node()
28 if (fr != FR_OK || !fno->fname[0]) break; /* End of directory? */ in delete_node()
34 path[i + j] = fno->fname[j]; in delete_node()
35 } while (fno->fname[j++]); in delete_node()
36 if (fno->fattrib & AM_DIR) { /* Item is a sub-directory */ in delete_node()
37 fr = delete_node(path, sz_buff, fno); in delete_node()
59 FILINFO fno; in main() local
68 fr = delete_node(buff, sizeof buff / sizeof buff[0], &fno); in main()
/third_party/glslang/
H A DAndroid.mk60 LOCAL_CXXFLAGS:=-std=c++17 -fno-exceptions -fno-rtti $(GLSLANG_DEFINES)
75 LOCAL_CXXFLAGS:=-std=c++17 -fno-exceptions -fno-rtti $(GLSLANG_DEFINES)
130 LOCAL_CXXFLAGS:=-std=c++17 -fno-exceptions -fno-rtti -Werror $(GLSLANG_DEFINES)
/third_party/node/deps/v8/tools/gcmole/
H A DMakefile46 -D__STDC_LIMIT_MACROS -fomit-frame-pointer -fno-exceptions \
47 -fno-rtti -fPIC -Woverloaded-virtual -Wcast-qual -fno-strict-aliasing \
/third_party/python/Objects/
H A Dfileobject.c189 PyObject *fno = _PyObject_CallNoArgs(meth); in PyObject_AsFileDescriptor() local
191 if (fno == NULL) in PyObject_AsFileDescriptor()
194 if (PyLong_Check(fno)) { in PyObject_AsFileDescriptor()
195 fd = _PyLong_AsInt(fno); in PyObject_AsFileDescriptor()
196 Py_DECREF(fno); in PyObject_AsFileDescriptor()
201 Py_DECREF(fno); in PyObject_AsFileDescriptor()
/third_party/musl/
H A Dconfigure353 || tryflag CFLAGS_C99FSE -fno-builtin
364 tryflag CFLAGS_C99FSE -fno-strict-aliasing
399 tryflag CFLAGS_NOSSP -fno-stack-protector
408 tryflag CFLAGS_MEMOPS -fno-tree-loop-distribute-patterns
452 tryflag CFLAGS_AUTO -fno-align-jumps
453 tryflag CFLAGS_AUTO -fno-align-functions
454 tryflag CFLAGS_AUTO -fno-align-loops
455 tryflag CFLAGS_AUTO -fno-align-labels
459 || tryflag CFLAGS_AUTO -fno-reorder-blocks
460 tryflag CFLAGS_AUTO -fno
[all...]
/third_party/glslang/ndk_test/
H A DAndroid.mk41 LOCAL_CXXFLAGS:=-std=c++17 -fno-exceptions -fno-rtti -Werror
/third_party/vk-gl-cts/external/amber/src/android_test/
H A DAndroid.mk22 LOCAL_CXXFLAGS:=-std=c++11 -fno-exceptions -fno-rtti -Werror
/third_party/skia/third_party/externals/spirv-tools/android_test/
H A DAndroid.mk8 LOCAL_CXXFLAGS:=-std=c++11 -fno-exceptions -fno-rtti -Werror
/third_party/spirv-tools/android_test/
H A DAndroid.mk8 LOCAL_CXXFLAGS:=-std=c++17 -fno-exceptions -fno-rtti -Werror
/third_party/vk-gl-cts/external/amber/src/third_party/
H A DAndroid.mk22 LOCAL_CXXFLAGS:=-std=c++11 -fno-exceptions -fno-rtti
/third_party/ltp/testcases/kernel/kvm/
H A DMakefile11 GUEST_CFLAGS = -ffreestanding -O2 -Wall -fno-asynchronous-unwind-tables -fno-stack-protector -mno-mmx -mno-sse
31 GUEST_CFLAGS += -fno-pie
/third_party/vk-gl-cts/external/amber/src/samples/
H A DAndroid.mk30 LOCAL_CXXFLAGS:=-std=c++11 -fno-exceptions -fno-rtti -Werror -Wno-unknown-pragmas -DAMBER_ENGINE_VULKAN=1 -DAMBER_ENABLE_LODEPNG=1
/third_party/FatFs/source/
H A Dff.h370 FILINFO fno; member
445 FRESULT f_readdir (DIR* dp, FILINFO* fno); /* Read a directory item */
446 FRESULT f_findfirst (DIR* dp, FILINFO* fno, const TCHAR* path, const TCHAR* pattern); /* Find first file */
447 FRESULT f_findnext (DIR* dp, FILINFO* fno); /* Find next file */
451 FRESULT f_stat (const TCHAR* path, FILINFO* fno); /* Get file status */
453 FRESULT f_utime (const TCHAR* path, const FILINFO* fno); /* Change timestamp of a file/dir */
479 void get_fileinfo (DIR* dp, FILINFO* fno);
H A Dff.c2156 FILINFO* fno /* Pointer to the file information to be filled */ in get_fileinfo()
2170 fno->fname[0] = 0; /* Invaidate file info */ in get_fileinfo()
2182 nw = put_utf((DWORD)hs << 16 | wc, &fno->fname[di], FF_LFN_BUF - di); /* Store it in API encoding */ in get_fileinfo()
2190 fno->fname[di] = 0; /* Terminate the LFN (null string means LFN is invalid) */ in get_fileinfo()
2197 if (si == 9 && di < FF_SFN_BUF) fno->altname[di++] = '.'; /* Insert a . if extension is exist */ in get_fileinfo()
2206 nw = put_utf(wc, &fno->altname[di], FF_SFN_BUF - di); /* Store it in API encoding */ in get_fileinfo()
2212 fno->altname[di++] = (TCHAR)wc; /* Store it without any conversion */ in get_fileinfo()
2215 fno->altname[di] = 0; /* Terminate the SFN (null string means SFN is invalid) */ in get_fileinfo()
2217 if (fno->fname[0] == 0) { /* If LFN is invalid, altname[] needs to be copied to fname[] */ in get_fileinfo()
2219 fno in get_fileinfo()
3973 FILINFO fno; f_getcwd() local
4359 f_findfirst( DIR* dp, FILINFO* fno, const TCHAR* path, const TCHAR* pattern ) f_findfirst() argument
[all...]
/third_party/musl/dist/
H A Dconfig.mak24 #CFLAGS += -fno-stack-protector
30 #CFLAGS += -fno-asynchronous-unwind-tables
/third_party/vk-gl-cts/external/amber/src/
H A DAndroid.mk19 LOCAL_CXXFLAGS:=-std=c++11 -fno-exceptions -fno-rtti \
/third_party/zlib/nintendods/
H A DMakefile35 CXXFLAGS := $(CFLAGS) -fno-rtti -fno-exceptions
/third_party/ltp/tools/sparse/sparse-src/validation/
H A Dinfinite-loop01.c22 void fno(void) in fno() function
/third_party/littlefs/
H A DMakefile79 CFLAGS += -fno-omit-frame-pointer
82 CFLAGS += -fno-omit-frame-pointer
361 test-runner build-test: CFLAGS+=-fno-omit-frame-pointer
364 test-runner build-test: CFLAGS+=-fno-omit-frame-pointer
412 bench-runner build-bench: CFLAGS+=-fno-omit-frame-pointer
415 bench-runner build-bench: CFLAGS+=-fno-omit-frame-pointer
/third_party/ltp/testcases/cve/
H A DMakefile10 stack_clash: CFLAGS += -fno-optimize-sibling-calls
/third_party/skia/third_party/externals/spirv-tools/
H A DAndroid.mk329 LOCAL_CXXFLAGS:=-std=c++11 -fno-exceptions -fno-rtti -Werror
340 LOCAL_CXXFLAGS:=-std=c++11 -fno-exceptions -fno-rtti -Werror
/third_party/spirv-tools/
H A DAndroid.mk346 LOCAL_CXXFLAGS:=-std=c++17 -fno-exceptions -fno-rtti -Werror
357 LOCAL_CXXFLAGS:=-std=c++17 -fno-exceptions -fno-rtti -Werror
/third_party/musl/libc-test/src/math/gen/
H A DMakefile1 CFLAGS=-I. -Wall -fno-builtin -ffloat-store -D_GNU_SOURCE
/third_party/skia/third_party/externals/spirv-cross/
H A DMakefile25 CXXFLAGS += -DSPIRV_CROSS_EXCEPTIONS_TO_ASSERTIONS -fno-exceptions
/third_party/selinux/checkpolicy/
H A DMakefile13 CFLAGS ?= -g -Wall -Werror -Wshadow -O2 -fno-strict-aliasing

Completed in 13 milliseconds

12