Home
last modified time | relevance | path

Searched refs:prefix (Results 1 – 25 of 1797) sorted by relevance

12345678910>>...72

/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/tools/j2s4b/cmake/
H A DGitVersion.cmake36 set(VERSION_RC_START_TAG_PREFIX "rc-") # If available tags with the given prefix are used for dista…
46 # ${prefix}_VERSION_SUCCESS // 0 on error (e.g. git not found), 1 on success
47 # ${prefix}_VERSION_MAJOR
48 # ${prefix}_VERSION_MINOR
49 # ${prefix}_VERSION_PATCH
50 # ${prefix}_VERSION_FLAG
51 # ${prefix}_VERSION_DISTANCE
52 # ${prefix}_VERSION_SHORTHASH
53 # ${prefix}_VERSION_FULLHASH
54 # ${prefix}_VERSION_ISDIRTY // 0 or 1 if tree has local modifications
[all …]
/OK3568_Linux_fs/kernel/drivers/firmware/broadcom/
H A Dbcm47xx_sprom.c36 static void create_key(const char *prefix, const char *postfix, in create_key() argument
39 if (prefix && postfix) in create_key()
40 snprintf(buf, len, "%s%s%s", prefix, name, postfix); in create_key()
41 else if (prefix) in create_key()
42 snprintf(buf, len, "%s%s", prefix, name); in create_key()
49 static int get_nvram_var(const char *prefix, const char *postfix, in get_nvram_var() argument
55 create_key(prefix, postfix, name, key, sizeof(key)); in get_nvram_var()
58 if (fallback && err == -ENOENT && prefix) { in get_nvram_var()
66 static void nvram_read_ ## type(const char *prefix, \
74 err = get_nvram_var(prefix, postfix, name, buf, sizeof(buf), \
[all …]
/OK3568_Linux_fs/buildroot/package/libloki/
H A D0001-allow-to-install-to-a-specific-location-using-DESTDI.patch7 headers, libraries and binaries. It's not the same as "prefix".
9 So while installing to Buildroot STAGING directory, use prefix=/usr
27 - mkdir -p $(prefix)/include/loki
28 - mkdir -p $(prefix)/include/loki/flex
29 - mkdir -p $(prefix)/include/loki/yasli
30 + mkdir -p $(DESTDIR)$(prefix)/include/loki
31 + mkdir -p $(DESTDIR)$(prefix)/include/loki/flex
32 + mkdir -p $(DESTDIR)$(prefix)/include/loki/yasli
34 - install -m 644 loki/*.h $(prefix)/include/loki
35 - install -m 644 loki/flex/*.h $(prefix)/include/loki/flex
[all …]
/OK3568_Linux_fs/kernel/drivers/usb/gadget/function/
H A Df_mass_storage.h21 #define _FSG_MODULE_PARAM_ARRAY(prefix, params, name, type, desc) \ argument
22 module_param_array_named(prefix ## name, params.name, type, \
23 &prefix ## params.name ## _count, \
25 MODULE_PARM_DESC(prefix ## name, desc)
27 #define _FSG_MODULE_PARAM(prefix, params, name, type, desc) \ argument
28 module_param_named(prefix ## name, params.name, type, \
30 MODULE_PARM_DESC(prefix ## name, desc)
32 #define __FSG_MODULE_PARAMETERS(prefix, params) \ argument
33 _FSG_MODULE_PARAM_ARRAY(prefix, params, file, charp, \
35 _FSG_MODULE_PARAM_ARRAY(prefix, params, ro, bool, \
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-multimedia/webm/libvpx/
H A Dlibvpx-configure-support-blank-prefix.patch6 Fix configure to accept "--prefix=" (a blank prefix).
18 --prefix=*)
19 prefix="${optval}"
20 + # Distinguish between "prefix not set" and "prefix set to ''"
29 - prefix="${prefix:-/usr/local}"
32 + prefix=/usr/local
36 prefix="${prefix%/}"
38 libdir="${libdir:-${prefix}/lib}"
40 - if [ "${libdir#${prefix}}" = "${libdir}" ]; then
41 - die "Libdir ${libdir} must be a subdirectory of ${prefix}"
[all …]
/OK3568_Linux_fs/kernel/drivers/regulator/
H A Dmc13xxx.h55 #define MC13xxx_DEFINE(prefix, _name, _node, _reg, _vsel_reg, _voltages, _ops) \ argument
56 [prefix ## _name] = { \
63 .id = prefix ## _name, \
66 .reg = prefix ## _reg, \
67 .enable_bit = prefix ## _reg ## _ ## _name ## EN, \
68 .vsel_reg = prefix ## _vsel_reg, \
69 .vsel_shift = prefix ## _vsel_reg ## _ ## _name ## VSEL,\
70 .vsel_mask = prefix ## _vsel_reg ## _ ## _name ## VSEL_M,\
73 #define MC13xxx_FIXED_DEFINE(prefix, _name, _node, _reg, _voltages, _ops) \ argument
74 [prefix ## _name] = { \
[all …]
/OK3568_Linux_fs/kernel/arch/riscv/include/asm/
H A Datomic.h54 #define ATOMIC_OP(op, asm_op, I, asm_type, c_type, prefix) \ argument
56 void atomic##prefix##_##op(c_type i, atomic##prefix##_t *v) \
88 #define ATOMIC_FETCH_OP(op, asm_op, I, asm_type, c_type, prefix) \ in ATOMIC_OPS() argument
90 c_type atomic##prefix##_fetch_##op##_relaxed(c_type i, \ in ATOMIC_OPS()
91 atomic##prefix##_t *v) \ in ATOMIC_OPS()
102 c_type atomic##prefix##_fetch_##op(c_type i, atomic##prefix##_t *v) \
113 #define ATOMIC_OP_RETURN(op, asm_op, c_op, I, asm_type, c_type, prefix) \ argument
115 c_type atomic##prefix##_##op##_return_relaxed(c_type i, \
116 atomic##prefix##_t *v) \
118 return atomic##prefix##_fetch_##op##_relaxed(i, v) c_op I; \
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/python/python3/
H A D12-distutils-prefix-is-inside-staging-area.patch10 The proper prefix is inside our staging area.
24 @@ -277,7 +277,9 @@ def get_python_inc(plat_specific=0, prefix=None):
25 If 'prefix' is supplied, use it instead of sys.base_prefix or
28 - if prefix is None:
29 + if prefix is None and os.environ.get('STAGING_INCDIR', ""):
30 + prefix = os.environ['STAGING_INCDIR'].rstrip('include')
31 + elif prefix is None:
32 prefix = plat_specific and BASE_EXEC_PREFIX or BASE_PREFIX
35 @@ -320,7 +322,13 @@ def get_python_lib(plat_specific=0, standard_lib=0, prefix=None):
36 If 'prefix' is supplied, use it instead of sys.base_prefix or
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/core/hal/
H A Dintrin.hpp229 #define CV_INTRIN_DEFINE_WIDE_INTRIN(typ, vtyp, short_typ, prefix, loadsfx) \ argument
230 inline vtyp vx_setall_##short_typ(typ v) { return prefix##_setall_##short_typ(v); } \
231 inline vtyp vx_setzero_##short_typ() { return prefix##_setzero_##short_typ(); } \
232 inline vtyp vx_##loadsfx(const typ* ptr) { return prefix##_##loadsfx(ptr); } \
233 … inline vtyp vx_##loadsfx##_aligned(const typ* ptr) { return prefix##_##loadsfx##_aligned(ptr); } \
234 inline vtyp vx_##loadsfx##_low(const typ* ptr) { return prefix##_##loadsfx##_low(ptr); } \
235 …inline vtyp vx_##loadsfx##_halves(const typ* ptr0, const typ* ptr1) { return prefix##_##loadsfx##_…
239 #define CV_INTRIN_DEFINE_WIDE_LOAD_EXPAND(typ, wtyp, prefix) \ argument
240 inline wtyp vx_load_expand(const typ* ptr) { return prefix##_load_expand(ptr); }
242 #define CV_INTRIN_DEFINE_WIDE_LOAD_EXPAND_Q(typ, qtyp, prefix) \ argument
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/hal/
H A Dintrin.hpp229 #define CV_INTRIN_DEFINE_WIDE_INTRIN(typ, vtyp, short_typ, prefix, loadsfx) \ argument
230 inline vtyp vx_setall_##short_typ(typ v) { return prefix##_setall_##short_typ(v); } \
231 inline vtyp vx_setzero_##short_typ() { return prefix##_setzero_##short_typ(); } \
232 inline vtyp vx_##loadsfx(const typ* ptr) { return prefix##_##loadsfx(ptr); } \
233 … inline vtyp vx_##loadsfx##_aligned(const typ* ptr) { return prefix##_##loadsfx##_aligned(ptr); } \
234 inline vtyp vx_##loadsfx##_low(const typ* ptr) { return prefix##_##loadsfx##_low(ptr); } \
235 …inline vtyp vx_##loadsfx##_halves(const typ* ptr0, const typ* ptr1) { return prefix##_##loadsfx##_…
239 #define CV_INTRIN_DEFINE_WIDE_LOAD_EXPAND(typ, wtyp, prefix) \ argument
240 inline wtyp vx_load_expand(const typ* ptr) { return prefix##_load_expand(ptr); }
242 #define CV_INTRIN_DEFINE_WIDE_LOAD_EXPAND_Q(typ, qtyp, prefix) \ argument
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/core/hal/
H A Dintrin.hpp229 #define CV_INTRIN_DEFINE_WIDE_INTRIN(typ, vtyp, short_typ, prefix, loadsfx) \ argument
230 inline vtyp vx_setall_##short_typ(typ v) { return prefix##_setall_##short_typ(v); } \
231 inline vtyp vx_setzero_##short_typ() { return prefix##_setzero_##short_typ(); } \
232 inline vtyp vx_##loadsfx(const typ* ptr) { return prefix##_##loadsfx(ptr); } \
233 … inline vtyp vx_##loadsfx##_aligned(const typ* ptr) { return prefix##_##loadsfx##_aligned(ptr); } \
234 inline vtyp vx_##loadsfx##_low(const typ* ptr) { return prefix##_##loadsfx##_low(ptr); } \
235 …inline vtyp vx_##loadsfx##_halves(const typ* ptr0, const typ* ptr1) { return prefix##_##loadsfx##_…
239 #define CV_INTRIN_DEFINE_WIDE_LOAD_EXPAND(typ, wtyp, prefix) \ argument
240 inline wtyp vx_load_expand(const typ* ptr) { return prefix##_load_expand(ptr); }
242 #define CV_INTRIN_DEFINE_WIDE_LOAD_EXPAND_Q(typ, qtyp, prefix) \ argument
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-extended/ltp/
H A Dltp_20220121.bb41 export prefix = "/opt/${PN}"
55 install -d ${D}${prefix}/
64 rm -rf ${D}${prefix}/bin/STPfailure_report.pl
66 # Copy POSIX test suite into ${D}${prefix}/testcases by manual
67 cp -r testcases/open_posix_testsuite ${D}${prefix}/testcases
70 find ${D}${prefix} -name Makefile | xargs -n 1 sed -i \
71 -e 's@[^ ]*-fdebug-prefix-map=[^ "]*@@g' \
72 -e 's@[^ ]*-fmacro-prefix-map=[^ "]*@@g' \
73 -e 's@[^ ]*-ffile-prefix-map=[^ "]*@@g' \
78 sed -e '/^memcg_stress/d' -i ${D}${prefix}/runtest/controllers
[all …]
/OK3568_Linux_fs/buildroot/package/python3/
H A D0010-Misc-python-config.sh.in-ensure-sed-invocations-only.patch7 The build/real prefix handling using sed breaks if build != real and the
8 standard include / lib directories are used ($prefix/include and $prefix/lib).
12 prefix_build="/usr", libdir="$prefix/lib", includedir="$prefix/include".
15 prefix_real = prefix = "/foo/usr" as expected, but
17 the double sed invocation (prefix is already expanded). Work around it by
35 +prefix_build="@prefix@"
39 # locations. Keep prefix & exec_prefix using their original values in case
42 -prefix="@prefix@"
44 +prefix=$(echo "$prefix_build" | sed "s#^$prefix_build#$prefix_real#")
47 -includedir=$(echo "@includedir@" | sed "s#$prefix#$prefix_real#")
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-kernel/systemtap/systemtap/
H A D0001-Install-python-modules-to-correct-library-dir.patch9 Add OE's CFLAGS which contains `-fdebug-prefix-map' options to
13 it as a prefix to strip off the purported filename encoded
14 in bytecode files. (It strips build path prefix from .pyc files)
29 +# Add OE's CFLAGS which contains `-fdebug-prefix-map' options to
40 - install --prefix $(DESTDIR)$(prefix) \
41 + install --root $(DESTDIR) --prefix $(prefix) --prefix $(prefix) --install-lib=${pythondir} \
49 - install --prefix $(DESTDIR)$(prefix) \
50 + install --root $(DESTDIR) --prefix $(prefix) --install-lib=${python3dir} \
/OK3568_Linux_fs/yocto/poky/scripts/
H A Dgen-lockedsig-cache25 def map_sha_to_files(dir_, prefix, sha_map): argument
26 sstate_prefix_path = dir_ + '/' + prefix + '/'
40 def build_sha_cache(prefix): argument
44 map_sha_to_files(sstate_dir, prefix, sha_map)
47 map_sha_to_files(native_sstate_dir, prefix, sha_map)
80 prefix = s[:2] variable
82 if prefix not in sstate_content_cache:
83 sstate_content_cache[prefix] = {}
84 if prefix2 not in sstate_content_cache[prefix]:
85 sstate_content_cache[prefix][prefix2] = build_sha_cache(prefix + "/" + prefix2)
[all …]
/OK3568_Linux_fs/kernel/net/ipv6/
H A Daddrlabel.c33 struct in6_addr prefix; member
67 const struct in6_addr *prefix; member
72 .prefix = &in6addr_any,
75 .prefix = &(struct in6_addr){ { { 0xfc } } } ,
79 .prefix = &(struct in6_addr){ { { 0xfe, 0xc0 } } },
83 .prefix = &(struct in6_addr){ { { 0x20, 0x02 } } },
87 .prefix = &(struct in6_addr){ { { 0x3f, 0xfe } } },
91 .prefix = &(struct in6_addr){ { { 0x20, 0x01 } } },
95 .prefix = &(struct in6_addr){ { { 0x20, 0x01, 0x00, 0x10 } } },
99 .prefix = &(struct in6_addr){ { { [10] = 0xff, [11] = 0xff } } },
[all …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/powerpc/pmu/ebb/
H A Dtrace.c168 static void trace_print_header(int seq, int prefix) in trace_print_header() argument
170 printf("%*s[%d]: ", prefix, "", seq); in trace_print_header()
235 static void trace_print_entry(struct trace_entry *e, int seq, int *prefix) in trace_print_entry() argument
239 trace_print_header(seq, *prefix); in trace_print_entry()
243 trace_print_header(seq, *prefix); in trace_print_entry()
247 trace_print_header(seq, *prefix); in trace_print_entry()
251 trace_print_header(seq, *prefix); in trace_print_entry()
253 *prefix += PREFIX_DELTA; in trace_print_entry()
256 *prefix -= PREFIX_DELTA; in trace_print_entry()
257 if (*prefix < BASE_PREFIX) in trace_print_entry()
[all …]
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dscons.bbclass12 …${STAGING_BINDIR_NATIVE}/scons --directory=${S} --clean PREFIX=${prefix} prefix=${prefix} ${EXTRA_…
21 …${STAGING_BINDIR_NATIVE}/scons --directory=${S} ${PARALLEL_MAKE} PREFIX=${prefix} prefix=${prefix}…
26 …INDIR_NATIVE}/scons --directory=${S} install_root=${D}${prefix} PREFIX=${prefix} prefix=${prefix} …
/OK3568_Linux_fs/buildroot/package/lua/
H A Dlua.pc.in6 prefix= /usr var
7 INSTALL_BIN= ${prefix}/bin
8 INSTALL_INC= ${prefix}/include
9 INSTALL_LIB= ${prefix}/lib
10 INSTALL_MAN= ${prefix}/man/man1
11 INSTALL_LMOD= ${prefix}/share/lua/${V}
12 INSTALL_CMOD= ${prefix}/lib/lua/${V}
15 exec_prefix=${prefix}
17 includedir=${prefix}/include
/OK3568_Linux_fs/yocto/poky/meta/recipes-gnome/gnome/
H A Dadwaita-icon-theme_41.0.bb30 FILES:${PN}-cursors = "${prefix}/share/icons/Adwaita/cursors/"
31 FILES:${PN}-symbolic-hires = "${prefix}/share/icons/Adwaita/96x96/*/*.symbolic.png \
32 ${prefix}/share/icons/Adwaita/64x64/*/*.symbolic.png \
33 ${prefix}/share/icons/Adwaita/48x48/*/*.symbolic.png \
34 ${prefix}/share/icons/Adwaita/32x32/*/*.symbolic.png"
35 FILES:${PN}-symbolic = "${prefix}/share/icons/Adwaita/16x16/*/*.symbolic.png \
36 ${prefix}/share/icons/Adwaita/24x24/*/*.symbolic.png \
37 ${prefix}/share/icons/Adwaita/scalable/*/*-symbolic*.svg"
38 FILES:${PN}-hires = "${prefix}/share/icons/Adwaita/256x256/ \
39 ${prefix}/share/icons/Adwaita/512x512/"
[all …]
/OK3568_Linux_fs/kernel/sound/soc/generic/
H A Dsimple-card-utils.c37 char *prefix, in asoc_simple_parse_convert() argument
42 if (!prefix) in asoc_simple_parse_convert()
43 prefix = ""; in asoc_simple_parse_convert()
46 snprintf(prop, sizeof(prop), "%s%s", prefix, "convert-rate"); in asoc_simple_parse_convert()
50 snprintf(prop, sizeof(prop), "%s%s", prefix, "convert-channels"); in asoc_simple_parse_convert()
58 char *prefix, in asoc_simple_parse_daifmt() argument
65 daifmt = snd_soc_of_parse_daifmt(node, prefix, in asoc_simple_parse_daifmt()
121 char *prefix) in asoc_simple_parse_card_name() argument
125 if (!prefix) in asoc_simple_parse_card_name()
126 prefix = ""; in asoc_simple_parse_card_name()
[all …]
/OK3568_Linux_fs/kernel/tools/perf/util/
H A Dstat-display.c145 const char *prefix; member
165 fputs(os->prefix, os->fh); in do_new_line_std()
205 if (os->prefix) in new_line_csv()
206 fprintf(os->fh, "%s", os->prefix); in new_line_csv()
398 char *prefix, u64 run, u64 ena, double noise, in printout() argument
404 .prefix = prefix ? prefix : "", in printout()
626 char *prefix, bool metric_only, in print_counter_aggrdata() argument
649 if (prefix && !metric_only) in print_counter_aggrdata()
650 fprintf(output, "%s", prefix); in print_counter_aggrdata()
653 printout(config, cpu != -1 ? cpu : id, nr, counter, uval, prefix, in print_counter_aggrdata()
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-extended/wxwidgets/wxwidgets/
H A Dwx-config-fix-libdir-for-multilib.patch18 set(prefix ${CMAKE_INSTALL_PREFIX})
19 set(exec_prefix "\${prefix}")
20 set(includedir "\${prefix}/include")
34 - wx-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--release] [--version-full]
35 + wx-config [--prefix[=DIR]] [--exec-prefix[=DIR]][--baselib=DIR]
40 @@ -137,7 +138,7 @@ wxconfig_output_options="prefix exec_prefix
44 -wxconfig_input_options="prefix exec_prefix utility $wxconfig_schema"
45 +wxconfig_input_options="prefix exec_prefix baselib utility $wxconfig_schema"
51 prefix=${input_option_prefix-${this_prefix:-@prefix@}}
/OK3568_Linux_fs/yocto/poky/scripts/lib/build_perf/
H A Dreport.py297 def measurement_stats(meas, prefix=''): argument
300 return {prefix + 'sample_cnt': 0,
301 prefix + 'mean': MeasurementVal('nan'),
302 prefix + 'stdev': MeasurementVal('nan'),
303 prefix + 'variance': MeasurementVal('nan'),
304 prefix + 'min': MeasurementVal('nan'),
305 prefix + 'max': MeasurementVal('nan'),
306 prefix + 'minus': MeasurementVal('nan'),
307 prefix + 'plus': MeasurementVal('nan')}
320 stats[prefix + 'sample_cnt'] = len(values)
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/libtool/libtool/
H A D0002-libtool.m4-Rename-the-with-sysroot-option-to-avoid-c.patch63 -configure_options="$configure_options --with-sysroot=$sysroot --prefix=$prefix"
64 +configure_options="$configure_options --with-libtool-sysroot=$sysroot --prefix=$prefix"
93 -configure_options="$configure_options --with-sysroot=$sysroot --prefix=$prefix"
94 +configure_options="$configure_options --with-libtool-sysroot=$sysroot --prefix=$prefix"
120 -configure_options="$configure_options --with-sysroot=$sysroot --prefix=$prefix"
121 +configure_options="$configure_options --with-libtool-sysroot=$sysroot --prefix=$prefix"
147 -configure_options="$configure_options --with-sysroot=$sysroot --prefix=$prefix"
148 +configure_options="$configure_options --with-libtool-sysroot=$sysroot --prefix=$prefix"

12345678910>>...72