| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/share/i18n/locales/ |
| H A D | hu_HU | 74 %% When a compound letter is pronounced long, only the first 83 %% The same goes for all other compound consonants. 88 collating-symbol <single-or-compound> 89 collating-symbol <compound> 281 <single-or-compound> 282 <compound> 302 <C-S> <cs>;<compound>;<CAP-CAP>;IGNORE 303 <C-s> <cs>;<compound>;<CAP-MIN>;IGNORE 304 <C-C-S> "<cs><cs>";"<single-or-compound><compound>";"<CAP><CAP-CAP>";IGNORE 305 <C-C-s> "<cs><cs>";"<single-or-compound><compound>";"<CAP><CAP-MIN>";IGNORE [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/share/i18n/locales/ |
| H A D | hu_HU | 74 %% When a compound letter is pronounced long, only the first 83 %% The same goes for all other compound consonants. 88 collating-symbol <single-or-compound> 89 collating-symbol <compound> 281 <single-or-compound> 282 <compound> 302 <C-S> <cs>;<compound>;<CAP-CAP>;IGNORE 303 <C-s> <cs>;<compound>;<CAP-MIN>;IGNORE 304 <C-C-S> "<cs><cs>";"<single-or-compound><compound>";"<CAP><CAP-CAP>";IGNORE 305 <C-C-s> "<cs><cs>";"<single-or-compound><compound>";"<CAP><CAP-MIN>";IGNORE [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/expression/ |
| H A D | dsl.cpp | 16 static std::unique_ptr<Expression> compound(const char* op, std::vector<std::unique_ptr<Expression>… in compound() function 24 static std::unique_ptr<Expression> compound(const char* op, Args... args) { in compound() function 25 return compound(op, vec(std::move(args)...)); in compound() 73 return compound("to-string", std::move(value)); in toString() 81 return compound("get", std::move(property)); in get() 85 return compound("id"); in id() 89 return compound("zoom"); in zoom() 104 return compound(">", std::move(lhs), std::move(rhs)); in gt() 109 return compound("<", std::move(lhs), std::move(rhs)); in lt() 177 return compound("concat", std::move(inputs)); in concat()
|
| H A D | parsing_context.cpp | 41 auto compound = static_cast<const CompoundExpressionBase*>(&expression); in isConstant() local 42 if (compound->getName() == "error") { in isConstant()
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | rmap.h | 187 unsigned long address, bool compound); 190 unsigned long address, bool compound) in page_add_new_anon_rmap() argument 193 __page_add_new_anon_rmap(page, vma, address, compound); in page_add_new_anon_rmap() 204 static inline void page_dup_rmap(struct page *page, bool compound) in page_dup_rmap() argument 208 if (!compound) in page_dup_rmap() 209 trace_android_vh_update_page_mapcount(page, true, compound, NULL, &success); in page_dup_rmap() 211 atomic_inc(compound ? compound_mapcount_ptr(page) : &page->_mapcount); in page_dup_rmap()
|
| /OK3568_Linux_fs/kernel/mm/ |
| H A D | rmap.c | 1119 struct vm_area_struct *vma, unsigned long address, bool compound) in page_add_anon_rmap() argument 1121 do_page_add_anon_rmap(page, vma, address, compound ? RMAP_COMPOUND : 0); in page_add_anon_rmap() 1132 bool compound = flags & RMAP_COMPOUND; in do_page_add_anon_rmap() local 1141 if (compound) { in do_page_add_anon_rmap() 1148 trace_android_vh_update_page_mapcount(page, true, compound, in do_page_add_anon_rmap() 1155 int nr = compound ? thp_nr_pages(page) : 1; in do_page_add_anon_rmap() 1162 if (compound) in do_page_add_anon_rmap() 1192 struct vm_area_struct *vma, unsigned long address, bool compound) in __page_add_new_anon_rmap() argument 1194 int nr = compound ? thp_nr_pages(page) : 1; in __page_add_new_anon_rmap() 1197 if (compound) { in __page_add_new_anon_rmap() [all …]
|
| H A D | debug.c | 51 bool compound = PageCompound(page); in __dump_page() local 87 compound = false; in __dump_page() 102 if (compound) { in __dump_page()
|
| /OK3568_Linux_fs/kernel/scripts/ |
| H A D | asn1_compiler.c | 669 enum compound { enum 691 enum compound compound : 8; member 941 element->compound = implicit ? TAG_OVERRIDE : SEQUENCE; in parse_type() 954 element->compound = ANY; in parse_type() 962 element->compound = NOT_COMPOUND; in parse_type() 985 element->compound = NOT_COMPOUND; in parse_type() 991 element->compound = NOT_COMPOUND; in parse_type() 1001 element->compound = NOT_COMPOUND; in parse_type() 1011 element->compound = TYPE_REF; in parse_type() 1025 element->compound = CHOICE; in parse_type() [all …]
|
| /OK3568_Linux_fs/kernel/include/trace/hooks/ |
| H A D | mm.h | 163 TP_PROTO(struct page *page, bool inc_size, bool compound, 165 TP_ARGS(page, inc_size, compound, first_mapping, success)); 167 TP_PROTO(struct page *page, bool compound, enum lru_list lru), 168 TP_ARGS(page, compound, lru)); 170 TP_PROTO(struct page *page, bool compound, enum lru_list lru), 171 TP_ARGS(page, compound, lru));
|
| /OK3568_Linux_fs/kernel/Documentation/admin-guide/mm/ |
| H A D | pagemap.rst | 94 When compound page is used, SLUB/SLQB will only set this flag on the head 102 A compound page with order N consists of 2^N physically contiguous pages. 103 A compound page with order 2 takes the form of "HTTT", where H donates its 104 head page and T donates its tail page(s). The major consumers of compound 111 A compound page tail (see description above).
|
| /OK3568_Linux_fs/kernel/Documentation/vm/ |
| H A D | transhuge.rst | 56 In case you can't handle compound pages if they're returned by 117 Refcounting on THP is mostly consistent with refcounting on other compound 126 on relevant sub-page of the compound page. 128 - map/unmap of the whole compound page is accounted for in compound_mapcount 142 map/unmap of the whole compound page.
|
| H A D | page_frags.rst | 8 which resides within a 0 or higher order compound page. Multiple
|
| /OK3568_Linux_fs/kernel/Documentation/userspace-api/media/v4l/ |
| H A D | extended-controls.rst | 74 pointers it is now also possible to have controls with compound types 77 be able to see such compound controls. In other words, these controls 78 with compound types should only be used programmatically. 80 Since such compound controls need to expose more information about
|
| H A D | vidioc-queryctrl.rst | 60 driver returns the next supported non-compound control, or ``EINVAL`` if 62 can be specified to enumerate all compound controls (i.e. controls with 66 order to enumerate all controls, compound or not. Drivers which do not 70 support controls that can use compound types, and to expose additional 191 returns the first non-compound control with a higher ID. When the 193 the flag and returns the first compound control with a higher ID. 194 Set both to get the first control (compound or not) with a higher 554 for controls that are an array, string, or have a compound type.
|
| H A D | vidioc-g-ext-ctrls.rst | 57 ``string`` field. Controls of compound types 197 - A pointer to a compound type which can be an N-dimensional array 198 and/or a compound type (the control's type is >=
|
| /OK3568_Linux_fs/kernel/Documentation/core-api/ |
| H A D | pin_user_pages.rst | 58 For huge pages (and in fact, any compound page of more than 2 pages), the 60 is achieved, by using the 3rd struct page in the compound page. A new struct 63 This approach for compound pages avoids the counting upper limit problems that 69 This also means that huge pages and compound pages (of order > 1) do not suffer 268 to better report on compound pages in general. Specifically, for compound pages
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/usb/ |
| H A D | usb251xb.txt | 39 - compound-device : indicate the hub is part of a compound device (boolean)
|
| /OK3568_Linux_fs/kernel/drivers/gpu/arm/midgard/docs/ |
| H A D | policy_overview.dot | 23 compound=true;
|
| H A D | policy_operation_diagram.dot | 23 compound=true;
|
| /OK3568_Linux_fs/kernel/Documentation/filesystems/nfs/ |
| H A D | nfs41-server.rst | 250 Nonstandard compound limitations: 251 No support for a sessions fore channel RPC compound that requires both a
|
| /OK3568_Linux_fs/buildroot/package/binutils/2.38/ |
| H A D | 0005-binutils-2.38-vs.-ppc32-linux-kernel.patch | 31 + to gcc. See gcc pr101393. And to compound the problem,
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/buildperf/ |
| H A D | base.py | 137 compound = [('SUCCESS', t, None) for t in self.successes] + \ 143 return sorted(compound, key=lambda info: info[1].start_time)
|
| /OK3568_Linux_fs/kernel/lib/ |
| H A D | Kconfig.kcsan | 45 …def_bool (CC_IS_CLANG && $(cc-option,-fsanitize=thread -mllvm -tsan-compound-read-before-write=1))… 46 (CC_IS_GCC && $(cc-option,-fsanitize=thread --param tsan-compound-read-before-write=1))
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/ |
| H A D | graph.txt | 8 devices that work together to form a logical compound device, following an
|
| /OK3568_Linux_fs/kernel/Documentation/networking/ |
| H A D | radiotap-headers.rst | 75 - The arguments for a given argument index can be a compound of multiple types
|