Home
last modified time | relevance | path

Searched full:base (Results 1 – 25 of 16296) sorted by relevance

12345678910>>...652

/external/e2fsprogs/debian/
Dlibext2fs2.symbols3 e2p_edit_feature2@Base 1.40.7
4 e2p_edit_feature@Base 1.37
5 e2p_edit_mntopts@Base 1.37
6 e2p_encmode2string@Base 1.43
7 e2p_encoding2str@Base 1.45.1
8 e2p_feature2string@Base 1.37
9 e2p_get_encoding_flags@Base 1.45
10 e2p_hash2string@Base 1.37
11 e2p_is_null_uuid@Base 1.37
12 e2p_jrnl_feature2string@Base 1.41.1
[all …]
Dlibblkid1.symbols2 blkid__scan_dir@Base 1.41.1
3 blkid_debug_mask@Base 1.33
4 blkid_dev_devname@Base 1.33
5 blkid_dev_has_tag@Base 1.38
6 blkid_dev_iterate_begin@Base 1.33
7 blkid_dev_iterate_end@Base 1.33
8 blkid_dev_next@Base 1.33
9 blkid_dev_set_search@Base 1.38
10 #MISSING: 1.41.1# blkid_devdirs@Base 1.34
11 blkid_devno_to_devname@Base 1.33
[all …]
/external/llvm-project/polly/lib/External/isl/include/isl/
Dmulti.h13 #define ISL_DECLARE_MULTI(BASE) \ argument
14 isl_ctx *isl_multi_##BASE##_get_ctx( \
15 __isl_keep isl_multi_##BASE *multi); \
17 __isl_give isl_space *isl_multi_##BASE##_get_space( \
18 __isl_keep isl_multi_##BASE *multi); \
19 __isl_give isl_space *isl_multi_##BASE##_get_domain_space( \
20 __isl_keep isl_multi_##BASE *multi); \
22 __isl_give isl_##BASE##_list *isl_multi_##BASE##_get_list( \
23 __isl_keep isl_multi_##BASE *multi); \
25 __isl_give isl_multi_##BASE *isl_multi_##BASE##_from_##BASE##_list( \
[all …]
/external/libchrome/
DAndroid.bp62 "base/allocator/allocator_extension.h",
63 "base/allocator/allocator_shim.h",
64 "base/allocator/allocator_shim_internals.h",
65 "base/allocator/allocator_shim_override_cpp_symbols.h",
66 "base/allocator/allocator_shim_override_libc_symbols.h",
67 "base/allocator/allocator_shim_override_linker_wrapped_symbols.h",
68 "base/allocator/buildflags.h",
69 "base/android/android_hardware_buffer_compat.h",
70 "base/android/build_info.h",
71 "base/android/content_uri_utils.h",
[all …]
DBUILD.gn52 # Suppressing warning in base/strings/stringprintf.cc.
55 # This is for _exit(1) in base/debug/debugger_posix.cc.
62 name = "base-core"
75 "base/allocator/allocator_extension.cc",
76 "base/allocator/allocator_shim.cc",
77 "base/allocator/allocator_shim_default_dispatch_to_glibc.cc",
78 "base/at_exit.cc",
79 "base/barrier_closure.cc",
80 "base/base64.cc",
81 "base/base64url.cc",
[all …]
/external/openscreen/third_party/chromium_quic/build/base/
DBUILD.gn31 # defined here so that src/base code that includes the headers also processes
35 include_dirs = [ "../../src/base/third_party/libevent/linux" ]
37 include_dirs = [ "../../src/base/third_party/libevent/mac" ]
41 source_set("base") {
45 "../../src/base/allocator/allocator_extension.cc",
46 "../../src/base/allocator/allocator_extension.h",
47 "../../src/base/allocator/allocator_shim.h",
48 "../../src/base/at_exit.cc",
49 "../../src/base/at_exit.h",
50 "../../src/base/atomic_ref_count.h",
[all …]
/external/mesa3d/src/mesa/sparc/
Dsparc_matrix.h40 #define LDMATRIX_0_1_2_3_12_13_14_15(BASE) \ argument
41 ldd [BASE + ( 0 * 0x4)], M0; \
42 ldd [BASE + ( 2 * 0x4)], M2; \
43 ldd [BASE + (12 * 0x4)], M12; \
44 ldd [BASE + (14 * 0x4)], M14
46 #define LDMATRIX_0_1_12_13(BASE) \ argument
47 ldd [BASE + ( 0 * 0x4)], M0; \
48 ldd [BASE + (12 * 0x4)], M12
50 #define LDMATRIX_0_12_13(BASE) \ argument
51 ld [BASE + ( 0 * 0x4)], M0; \
[all …]
/external/selinux/libsepol/tests/
Dtest-linker-types.c39 * - type in base, no modules
40 * - type in base optional, no modules
41 * - type a in base, b in module
42 * - type a in base optional, b in module
43 * - type a in base, b in module optional
44 * - type a in base optional, b in module optional
45 * - attr in base, no modules
46 * - attr in base optional, no modules
47 * - attr a in base, b in module
48 * - attr a in base optional, b in module
[all …]
/external/llvm-project/libcxxabi/test/
Dcatch_pointer_reference.pass.cpp15 // * the handler is of type cv T or cv T& and T is an unambiguous base
34 struct Base {}; struct
35 struct Derived : Base {};
36 struct Derived2 : Base {};
38 struct Private : private Base {};
39 struct Protected : protected Base {};
100 // cv1 Base * cv2 in f1()
103 assert_catches< Base * , Derived *, Derived>(); in f1()
104 assert_catches<const Base * , Derived *, Derived>(); in f1()
105 assert_catches< volatile Base * , Derived *, Derived>(); in f1()
[all …]
/external/libcxxabi/test/
Dcatch_pointer_reference.pass.cpp16 // * the handler is of type cv T or cv T& and T is an unambiguous base
35 struct Base {}; struct
36 struct Derived : Base {};
37 struct Derived2 : Base {};
39 struct Private : private Base {};
40 struct Protected : protected Base {};
101 // cv1 Base * cv2 in f1()
104 assert_catches< Base * , Derived *, Derived>(); in f1()
105 assert_catches<const Base * , Derived *, Derived>(); in f1()
106 assert_catches< volatile Base * , Derived *, Derived>(); in f1()
[all …]
/external/llvm-project/llvm/test/CodeGen/ARM/
Darm-bf16-pcs.ll2 … -mtriple armv8.6a-arm-none-eabi -o - %s | FileCheck %s --check-prefix=BASE --check-prefix=BASE-ARM
3 …riple thumbv8.6a-arm-none-eabi -o - %s | FileCheck %s --check-prefix=BASE --check-prefix=BASE-THUMB
8 ; BASE-LABEL: bf_load_soft:
9 ; BASE: @ %bb.0:
10 ; BASE-NEXT: ldrh r0, [r0]
11 ; BASE-NEXT: bx lr
23 ; BASE-LABEL: bf_load_hard:
24 ; BASE: @ %bb.0:
25 ; BASE-NEXT: ldrh r0, [r0]
26 ; BASE-NEXT: vmov s0, r0
[all …]
/external/llvm-project/polly/lib/External/isl/
Dprint.c16 #undef BASE
17 #define BASE id macro
19 #undef BASE
20 #define BASE multi_id macro
22 #undef BASE
23 #define BASE val macro
25 #undef BASE
26 #define BASE multi_val macro
28 #undef BASE
29 #define BASE space macro
[all …]
Disl_multi_templ.c18 #define MULTI_NAME(BASE) "isl_multi_" #BASE argument
20 isl_ctx *FN(MULTI(BASE),get_ctx)(__isl_keep MULTI(BASE) *multi) in FN() argument
27 __isl_keep isl_space *FN(MULTI(BASE),peek_space)(__isl_keep MULTI(BASE) *multi) in FN() argument
32 __isl_give isl_space *FN(MULTI(BASE),get_space)(__isl_keep MULTI(BASE) *multi) in FN() argument
34 return isl_space_copy(FN(MULTI(BASE),peek_space)(multi)); in FN()
37 __isl_give isl_space *FN(MULTI(BASE),get_domain_space)( in FN() argument
38 __isl_keep MULTI(BASE) *multi) in FN()
45 * If the number of base expressions is zero, then make sure
49 __isl_give MULTI(BASE) *FN(MULTI(BASE),alloc)(__isl_take isl_space *space) in MULTI() argument
53 MULTI(BASE) *multi; in MULTI()
[all …]
/external/webrtc/p2p/
DBUILD.gn21 "base/async_stun_tcp_socket.cc",
22 "base/async_stun_tcp_socket.h",
23 "base/basic_async_resolver_factory.cc",
24 "base/basic_async_resolver_factory.h",
25 "base/basic_ice_controller.cc",
26 "base/basic_ice_controller.h",
27 "base/basic_packet_socket_factory.cc",
28 "base/basic_packet_socket_factory.h",
29 "base/candidate_pair_interface.h",
30 "base/connection.cc",
[all …]
/external/cldr/keyboards/osx/
Dth-t-k0-osx.xml59 <map iso="E00" to="~"/> <!-- ` base=- -->
60 <map iso="E01" to="!"/> <!-- 1 base=ๅ -->
61 <map iso="E02" to="@"/> <!-- 2 base=/ -->
62 <map iso="E03" to="#"/> <!-- 3 base=_ -->
63 <map iso="E04" to="$"/> <!-- 4 base=ภ -->
64 <map iso="E05" to="%"/> <!-- 5 base=ถ -->
65 <map iso="E06" to="^"/> <!-- 6 base=ุ -->
66 <map iso="E07" to="&amp;"/> <!-- 7 base=ึ -->
67 <map iso="E08" to="*"/> <!-- 8 base=ค -->
68 <map iso="E09" to="("/> <!-- 9 base=ต -->
[all …]
Dkm-t-k0-osx.xml59 <map iso="E00" to="»"/> <!-- ` base=« -->
60 <map iso="E01" to="!"/> <!-- 1 base=១ -->
61 <map iso="E02" to="ៗ"/> <!-- 2 base=២ -->
62 <map iso="E03" to="\u{22}"/> <!-- 3 base=៣ to= " -->
63 <map iso="E04" to="៛"/> <!-- 4 base=៤ -->
64 <map iso="E05" to="%"/> <!-- 5 base=៥ -->
65 <map iso="E06" to="\u{17CD}"/> <!-- 6 base=៦ to= ៍ -->
66 <map iso="E07" to="\u{17D0}"/> <!-- 7 base=៧ to= ័ -->
67 <map iso="E08" to="\u{17CF}"/> <!-- 8 base=៨ to= ៏ -->
68 <map iso="E09" to="ឰ"/> <!-- 9 base=៩ -->
[all …]
Dth-t-k0-osx-patta.xml58 <map iso="E00" to="~"/> <!-- ` base=฿ -->
60 <map iso="E02" to="@"/> <!-- 2 base=๒ -->
61 <map iso="E03" to="#"/> <!-- 3 base=๓ -->
62 <map iso="E04" to="$"/> <!-- 4 base=๔ -->
63 <map iso="E05" to="%"/> <!-- 5 base=๕ -->
64 <map iso="E06" to="^"/> <!-- 6 base=ู -->
65 <map iso="E07" to="&amp;"/> <!-- 7 base=๗ -->
66 <map iso="E08" to="*"/> <!-- 8 base=๘ -->
67 <map iso="E09" to="("/> <!-- 9 base=๙ -->
68 <map iso="E10" to=")"/> <!-- 0 base=๐ -->
[all …]
Dfa-t-k0-osx.xml60 <map iso="E00" to="/"/> <!-- ` base=پ -->
61 <map iso="E01" to="!"/> <!-- 1 base=۱ -->
62 <map iso="E02" to="❊"/> <!-- 2 base=۲ -->
63 <map iso="E03" to="#"/> <!-- 3 base=۳ -->
64 <map iso="E04" to="$"/> <!-- 4 base=۴ -->
65 <map iso="E05" to="٪"/> <!-- 5 base=۵ -->
66 <map iso="E06" to="^"/> <!-- 6 base=۶ -->
67 <map iso="E07" to="&amp;"/> <!-- 7 base=۷ -->
68 <map iso="E08" to="*"/> <!-- 8 base=۸ -->
69 <map iso="E09" to=")"/> <!-- 9 base=۹ -->
[all …]
Dne-t-k0-osx.xml59 <map iso="E01" to="१"/> <!-- 1 base=ज्ञ -->
60 <map iso="E02" to="२"/> <!-- 2 base=द्द -->
61 <map iso="E03" to="३"/> <!-- 3 base=घ -->
62 <map iso="E04" to="४"/> <!-- 4 base=द्ध -->
63 <map iso="E05" to="५"/> <!-- 5 base=छ -->
64 <map iso="E06" to="६"/> <!-- 6 base=ट -->
65 <map iso="E07" to="७"/> <!-- 7 base=ठ -->
66 <map iso="E08" to="८"/> <!-- 8 base=ड -->
67 <map iso="E09" to="९"/> <!-- 9 base=ढ -->
68 <map iso="E10" to="०"/> <!-- 0 base=ण -->
[all …]
Dkk-t-k0-osx.xml60 <map iso="E00" to="["/> <!-- ` base=] -->
61 <map iso="E01" to="!"/> <!-- 1 base=" -->
66 <map iso="E06" to=";"/> <!-- 6 base=, -->
67 <map iso="E07" to=":"/> <!-- 7 base=. -->
97 <map iso="B00" to=")"/> <!-- (key to left of Z) base=( -->
148 <map iso="B00" to="&gt;"/> <!-- (key to left of Z) base=( -->
162 <map iso="E00" to="`"/> <!-- base=] -->
163 <map iso="E01" to="1"/> <!-- base=" -->
164 <map iso="E02" to="2"/> <!-- base=ә -->
165 <map iso="E03" to="3"/> <!-- base=і -->
[all …]
Dur-t-k0-osx.xml60 <map iso="E00" to="\u{64B}"/> <!-- ` base=ٍ to= ً -->
61 <map iso="E01" to="!"/> <!-- 1 base=۱ -->
62 <map iso="E02" to="٫"/> <!-- 2 base=۲ -->
63 <map iso="E03" to="؍"/> <!-- 3 base=۳ -->
64 <map iso="E04" to="ء"/> <!-- 4 base=۴ -->
65 <map iso="E05" to="ي"/> <!-- 5 base=۵ -->
66 <map iso="E06" to="ﷺ"/> <!-- 6 base=۶ -->
67 <map iso="E07" to="ٴ"/> <!-- 7 base=۷ -->
68 <map iso="E08" to="\u{670}"/> <!-- 8 base=۸ to= ٰ -->
69 <map iso="E09" to=")"/> <!-- 9 base=۹ -->
[all …]
Dmy-t-k0-osx.xml59 <map iso="E00" to="၍"/> <!-- ` base=၌ -->
60 <map iso="E01" to="!"/> <!-- 1 base=၁ -->
61 <map iso="E02" to="@"/> <!-- 2 base=၂ -->
62 <map iso="E03" to="#"/> <!-- 3 base=၃ -->
63 <map iso="E04" to="$"/> <!-- 4 base=၄ -->
64 <map iso="E05" to="%"/> <!-- 5 base=၅ -->
65 <map iso="E06" to="^"/> <!-- 6 base=၆ -->
66 <map iso="E07" to="&amp;"/> <!-- 7 base=၇ -->
67 <map iso="E08" to="*"/> <!-- 8 base=၈ -->
68 <map iso="E09" to="("/> <!-- 9 base=၉ -->
[all …]
Dar-t-k0-osx-azerty.xml59 <map iso="E00" to="&lt;"/> <!-- ` base=> -->
60 <map iso="E01" to="1"/> <!-- base=& -->
61 <map iso="E02" to="2"/> <!-- base=é -->
62 <map iso="E03" to="3"/> <!-- base=" -->
63 <map iso="E04" to="4"/> <!-- base=' -->
64 <map iso="E05" to="5"/> <!-- base=) -->
65 <map iso="E06" to="6"/> <!-- base=- -->
66 <map iso="E07" to="7"/> <!-- base=è -->
67 <map iso="E08" to="8"/> <!-- base=_ -->
68 <map iso="E09" to="9"/> <!-- base=ç -->
[all …]
Dhi-t-k0-osx.xml59 <map iso="E00" to="ऒ"/> <!-- ` base=ॊ -->
60 <map iso="E01" to="ऍ"/> <!-- 1 base=१ -->
61 <map iso="E02" to="\u{945}"/> <!-- 2 base=२ to= ॅ -->
62 <map iso="E03" to="\u{94D}र"/> <!-- 3 base=३ to= ्र -->
63 <map iso="E04" to="र\u{94D}"/> <!-- 4 base=४ to= र् -->
64 <map iso="E05" to="ज\u{94D}ञ"/> <!-- 5 base=५ to= ज्ञ -->
65 <map iso="E06" to="त\u{94D}र"/> <!-- 6 base=६ to= त्र -->
66 <map iso="E07" to="क\u{94D}ष"/> <!-- 7 base=७ to= क्ष -->
67 <map iso="E08" to="श\u{94D}र"/> <!-- 8 base=८ to= श्र -->
68 <map iso="E09" to="("/> <!-- 9 base=९ -->
[all …]
Dpa-t-k0-osx.xml59 <map iso="E00" to="\u{A75}"/> <!-- ` base=ੑ to= ੵ -->
60 <map iso="E01" to="ੳ"/> <!-- 1 base=੧ -->
61 <map iso="E02" to="ੲ"/> <!-- 2 base=੨ -->
62 <map iso="E03" to="\u{A4D}ਰ"/> <!-- 3 base=੩ to= ੍ਰ -->
63 <map iso="E04" to="ਖ਼"/> <!-- 4 base=੪ -->
64 <map iso="E05" to="ਗ਼"/> <!-- 5 base=੫ -->
65 <map iso="E06" to="ਜ਼"/> <!-- 6 base=੬ -->
66 <map iso="E07" to="ਫ਼"/> <!-- 7 base=੭ -->
67 <map iso="E09" to="("/> <!-- 9 base=੯ -->
68 <map iso="E10" to=")"/> <!-- 0 base=੦ -->
[all …]

12345678910>>...652