Home
last modified time | relevance | path

Searched refs:rf (Results 1 – 25 of 926) sorted by relevance

12345678910>>...38

/third_party/toybox/tests/
Dchmod.test36 rm -rf "./$type" && mkdir $type
50 rm -rf dir file && mkdir dir && touch file
55 rm -rf dir file && mkdir dir && touch file
60 rm -rf dir file && mkdir dir && touch file
65 rm -rf dir file && mkdir dir && touch file
69 rm -rf dir file && mkdir dir && touch file
73 rm -rf dir file && mkdir dir && touch file
77 rm -rf dir file && mkdir dir && touch file
81 rm -rf dir file && mkdir dir && touch file
85 rm -rf dir file && mkdir dir && touch file
[all …]
Dmkdir.test24 rm -rf one
43 rm -rf one
47 rm -rf one
53 rm -rf one
60 rm -rf one
67 rm -rf walrus
73 rm -rf one two three
Dunzip.test54 rm -rf d1
56 rm -rf d1
62 rm -rf d1
68 rm -rf d1
74 rm -rf dir
82 rm -rf d1
86 rm -rf d1
Dmv.test26 rm -rf file* dir*
32 rm -rf dir*
43 rm -rf file* link* dir*
82 rm -rf file* link* dir*
91 rm -rf file* dir*
97 rm -rf dir*
104 rm -rf dir*
109 rm -rf dir*
114 rm -rf dir*
Dcp.test37 rm -rf two three walrus
83 rm -rf dir
96 rm -rf one dir dir2
101 rm -rf one one_
105 rm -rf one one_
114 rm -rf walrus woot carpenter
120 rm -rf a/
121 rm -rf b/
Drm.test16 rm -rf dir
29 rm -rf file* dir*
37 rm -rf file* dir*
45 rm -rf dir*
50 chmod 777 one 2>/dev/null ; rm -rf one
56 rm -rf d1
/third_party/mesa3d/.gitlab-ci/container/
Dcreate-rootfs.sh98 rm -rf /etc/localtime
120 rm -rf /var/log/*
123 rm -rf /usr/share/doc/*
124 rm -rf /usr/share/locale/*
125 rm -rf /usr/share/X11/locale/*
126 rm -rf /usr/share/man
127 rm -rf /usr/share/i18n/*
128 rm -rf /usr/share/info/*
129 rm -rf /usr/share/lintian/*
130 rm -rf /usr/share/common-licenses/*
[all …]
Dbuild-deqp.sh68 rm -rf /deqp/executor
71 rm -rf /deqp/external/openglcts/modules/gl_cts/data/mustpass
72 rm -rf /deqp/external/openglcts/modules/cts-runner
73 rm -rf /deqp/modules/internal
74 rm -rf /deqp/execserver
75 rm -rf /deqp/framework
76 find -iname '*cmake*' -o -name '*ninja*' -o -name '*.o' -o -name '*.a' | xargs rm -rf
81 rm -rf /VK-GL-CTS
/third_party/python/Tools/c-analyzer/c_parser/parser/
D_regexes.py24 STRING_LITERAL = textwrap.dedent(rf'''
98 KEYWORD = rf'''
107 STRICT_IDENTIFIER = rf'(?: (?! {_KEYWORD} ) \b {IDENTIFIER} \b )'
108 ANON_IDENTIFIER = rf'(?: (?! {_KEYWORD} ) \b {IDENTIFIER} (?: - \d+ )? \b )'
114 SIMPLE_TYPE = textwrap.dedent(rf'''
141 STORAGE_CLASS = rf'(?: \b (?: {" | ".join(_STORAGE)} ) \b )'
143 PTR_QUALIFIER = rf'(?: [*] (?: \s* {TYPE_QUALIFIER} )? )'
145 TYPE_SPEC = textwrap.dedent(rf'''
170 DECLARATOR = textwrap.dedent(rf'''
207 VAR_DECL = textwrap.dedent(rf'''
[all …]
/third_party/flutter/skia/third_party/externals/sdl/src/audio/
DSDL_audiocvt.c341 Uint8 *src, *dst, lf, rf, ce; in SDL_ConvertSurround() local
349 rf = src[1]; in SDL_ConvertSurround()
350 ce = (lf / 2) + (rf / 2); in SDL_ConvertSurround()
352 dst[1] = rf; in SDL_ConvertSurround()
354 dst[3] = rf - ce; in SDL_ConvertSurround()
363 Sint8 *src, *dst, lf, rf, ce; in SDL_ConvertSurround() local
371 rf = src[1]; in SDL_ConvertSurround()
372 ce = (lf / 2) + (rf / 2); in SDL_ConvertSurround()
374 dst[1] = rf; in SDL_ConvertSurround()
376 dst[3] = rf - ce; in SDL_ConvertSurround()
[all …]
/third_party/jsframework/
Djs_framework_build.sh55 rm -rf "$9/node-v12.18.4-linux-x64"
56 rm -rf "$9/node-v12.18.4-darwin-x64"
81 rm -rf ./node_modules
83 rm -rf ./node-v12.18.4-darwin-x64
85 rm -rf ./node-v12.18.4-linux-x64
87 rm -rf ./runtime
88 rm -rf ./tsconfig.json
89 rm -rf build_jsmock_system_plugin.js
90 rm -rf build_strip_native_min.js
91 rm -rf ./test
[all …]
/third_party/ffmpeg/libavcodec/
Dvdpau_h264.c42 static void vdpau_h264_clear_rf(VdpReferenceFrameH264 *rf) in vdpau_h264_clear_rf() argument
44 rf->surface = VDP_INVALID_HANDLE; in vdpau_h264_clear_rf()
45 rf->is_long_term = VDP_FALSE; in vdpau_h264_clear_rf()
46 rf->top_is_reference = VDP_FALSE; in vdpau_h264_clear_rf()
47 rf->bottom_is_reference = VDP_FALSE; in vdpau_h264_clear_rf()
48 rf->field_order_cnt[0] = 0; in vdpau_h264_clear_rf()
49 rf->field_order_cnt[1] = 0; in vdpau_h264_clear_rf()
50 rf->frame_idx = 0; in vdpau_h264_clear_rf()
53 static void vdpau_h264_set_rf(VdpReferenceFrameH264 *rf, H264Picture *pic, in vdpau_h264_set_rf() argument
61 rf->surface = surface; in vdpau_h264_set_rf()
[all …]
/third_party/NuttX/fs/romfs/
Dfs_romfs.c62 struct romfs_file_s *rf = NULL; in romfs_lookup() local
142 rf = (struct romfs_file_s *)zalloc(sizeof(struct romfs_file_s)); in romfs_lookup()
143 if (!rf) in romfs_lookup()
154 rf->rf_size = dirinfo->rd_size; in romfs_lookup()
155 rf->rf_type = (uint8_t)(dirinfo->rd_next & RFNEXT_ALLMODEMASK); in romfs_lookup()
160 &rf->rf_startoffset); in romfs_lookup()
173 rf->rf_next = rm->rm_head; in romfs_lookup()
174 rm->rm_head = rf->rf_next; in romfs_lookup()
187 newVnode->data = rf; in romfs_lookup()
203 free(rf); in romfs_lookup()
[all …]
/third_party/python/Python/
Dmarshal.c1454 RFILE rf; in PyMarshal_ReadShortFromFile() local
1457 rf.readable = NULL; in PyMarshal_ReadShortFromFile()
1458 rf.fp = fp; in PyMarshal_ReadShortFromFile()
1459 rf.end = rf.ptr = NULL; in PyMarshal_ReadShortFromFile()
1460 rf.buf = NULL; in PyMarshal_ReadShortFromFile()
1461 res = r_short(&rf); in PyMarshal_ReadShortFromFile()
1462 if (rf.buf != NULL) in PyMarshal_ReadShortFromFile()
1463 PyMem_Free(rf.buf); in PyMarshal_ReadShortFromFile()
1470 RFILE rf; in PyMarshal_ReadLongFromFile() local
1472 rf.fp = fp; in PyMarshal_ReadLongFromFile()
[all …]
/third_party/openssl/
Dcreate_asm_file.sh24 rm -rf crypto/aes/asm/arm32
25 rm -rf crypto/bn/asm/arm32
26 rm -rf crypto/chacha/asm/arm32
27 rm -rf crypto/ec/asm/arm32
28 rm -rf crypto/modes/asm/arm32
29 rm -rf crypto/poly1305/asm/arm32
30 rm -rf crypto/sha/asm/arm32
31 rm -rf crypto/armv4cpuid.S
56 rm -rf crypto/aes/asm/arm64
57 rm -rf crypto/bn/asm/arm64
[all …]
/third_party/skia/modules/canvaskit/
DMakefile2 - rm -rf ../../out/canvaskit_wasm
3 - rm -rf ./npm_build/bin
4 - rm -rf ./build/
10 - rm -rf build/
18 - rm -rf build/
26 - rm -rf build/
34 - rm -rf build/
42 - rm -rf build/
50 - rm -rf build/
57 - rm -rf build/
[all …]
/third_party/skia/third_party/externals/angle2/scripts/
Droll_aosp.sh25 rm -rf ${GN_OUTPUT_DIRECTORY}
98 rm -rf ${GN_OUTPUT_DIRECTORY}
109 rm -rf ${DEPOT_TOOLS_DIR}
130 rm -rf "$dep"
148 rm -rf "$unsupported_third_party_dep"
156 rm -rf "$dep"/.git
186 rm -rf $DEPOT_TOOLS_DIR
/third_party/boost/doc/pdf/
Dbuild5 (cd ../../libs/container/doc && rm -rf *.pdf && bjam -a --hash pdfinstall xsl:param=fop1.extensions…
6 (cd ../../libs/interprocess/doc && rm -rf *.pdf && bjam -a --hash pdf pdfinstall xsl:param=fop1.ext…
7 (cd ../../libs/intrusive/doc && rm -rf *.pdf && bjam -a --hash pdf pdfinstall xsl:param=fop1.extens…
8 (cd ../../libs/functional/overloaded_function/doc && rm -rf *.pdf && bjam -a --hash pdf pdfinstall …
9 (cd ../../libs/local_function/doc && rm -rf *.pdf && bjam -a --hash pdf pdfinstall && cp *.pdf ../.…
10 (cd ../../libs/utility/identity_type/doc && rm -rf *.pdf && bjam -a --hash pdf pdf_doc_install && c…
11 (cd ../../libs/numeric/odeint/doc && rm -rf *.pdf && bjam -a --hash --enable-index pdf pdfinstall &…
15 (cd ../../libs/geometry/doc && rm -rf *.pdf && ./make_qbk.py && bjam pdfinstall -a --hash xsl:param…
17 rm -rf boost_${boost_version}_pdf
/third_party/musl/scripts/
Dcopy_uapi.sh31 rm -rf ${OUT_DIR}/asm-arm64
32 rm -rf ${OUT_DIR}/asm-arm
35 rm -rf ${OUT_DIR}/asm-arm64
36 rm -rf ${OUT_DIR}/asm-arm
39 rm -rf ${OUT_DIR}/asm-arm64
40 rm -rf ${OUT_DIR}/asm-arm
/third_party/ltp/testscripts/
Dautofs1.sh140 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
150 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
163 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
174 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
183 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
203 rm -rf /AUTOFS >/dev/null 2>&1
211 rm -rf /AUTOFS >/dev/null 2>&1
241 rm -rf /etc/auto.master /etc/auto.media /etc/auto.disk /AUTOFS
250 rm -rf /etc/auto.master /etc/auto.media /etc/auto.disk /AUTOFS
271 rm -rf /etc/auto.master /etc/auto.media /etc/auto.disk /AUTOFS
Dautofs4.sh132 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
142 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
154 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
165 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
174 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
192 rm -rf /AUTOFS >/dev/null 2>&1
200 rm -rf /AUTOFS >/dev/null 2>&1
226 rm -rf /etc/auto.master /etc/auto.media /etc/auto.disk /AUTOFS
236 rm -rf /etc/auto.master /etc/auto.media /etc/auto.disk /AUTOFS
257 rm -rf /etc/auto.master /etc/auto.media /etc/auto.disk /AUTOFS
/third_party/libjpeg-turbo/release/
Dmakedpkg.in15 $SUDO rm -rf $TMPDIR
67 rm -rf $TMPDIR$BINDIR
69 rm -rf $TMPDIR$DATAROOTDIR
72 rm -rf $TMPDIR$JAVADIR
74 rm -rf $TMPDIR$DOCDIR
75 rm -rf $TMPDIR$INCLUDEDIR
76 rm -rf $TMPDIR$MANDIR
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/release/
Dmakedpkg.in15 $SUDO rm -rf $TMPDIR
67 rm -rf $TMPDIR$BINDIR
69 rm -rf $TMPDIR$DATAROOTDIR
72 rm -rf $TMPDIR$JAVADIR
74 rm -rf $TMPDIR$DOCDIR
75 rm -rf $TMPDIR$INCLUDEDIR
76 rm -rf $TMPDIR$MANDIR
/third_party/mindspore/mindspore/lite/
Dbuild_lite.sh47 rm -rf ${pkg_name}
49 …rm -rf ${LITE_JAVA_PATH}/java/linux_x86/libs/ && mkdir -pv ${LITE_JAVA_PATH}/java/linux_x86/libs/
50 …rm -rf ${LITE_JAVA_PATH}/native/libs/linux_x86/ && mkdir -pv ${LITE_JAVA_PATH}/native/libs/linux_x…
64 rm -rf java/jni && mkdir -pv java/jni
83 rm -rf gradle .gradle gradlew gradlew.bat
98 …rm -rf ${LITE_JAVA_PATH}/java/fl_client/.gradle ${LITE_JAVA_PATH}/java/fl_client/src/main/java/min…
108 rm -rf ${pkg_name}.tar.gz ${pkg_name}.tar.gz.sha256
111 rm -rf ${LITE_JAVA_PATH}/java/linux_x86/libs/
112 rm -rf ${LITE_JAVA_PATH}/native/libs/linux_x86/
116 [ -n "${BASEPATH}" ] && rm -rf ${BASEPATH}/output
[all …]
/third_party/boost/libs/property_tree/test/
Dtest_utils.hpp97 ReadFunc rf, in generic_parser_test() argument
113 rf(filename_1, pt); // Read file in generic_parser_test()
116 rf(filename_out, pt2); // Read file again in generic_parser_test()
125 void generic_parser_test_ok(ReadFunc rf, in generic_parser_test_ok() argument
149 generic_parser_test<Ptree, ReadFunc, WriteFunc>(pt, rf, wf, in generic_parser_test_ok()
180 void generic_parser_test_error(ReadFunc rf, in generic_parser_test_error() argument
201 generic_parser_test<Ptree, ReadFunc, WriteFunc>(pt, rf, wf, in generic_parser_test_error()
233 void check_exact_roundtrip(ReadFunc rf, WriteFunc wf, const char *test_data) { in check_exact_roundtrip() argument
244 rf(in_stream, tree); in check_exact_roundtrip()

12345678910>>...38