/aosp_15_r20/prebuilts/go/linux-x86/src/internal/bytealg/ |
D | index_ppc64x.s | 2 // Use of this source code is governed by a BSD-style 8 // Find a separator with 2 <= len <= 32 within a string. 19 // improves performance by 10-15% on little 49 TEXT ·Index<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-56 64 TEXT ·IndexString<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-40 105 ADD R4, R3, LASTBYTE // find last byte addr 106 SUB R6, LASTBYTE, LASTSTR // LAST=&s[len(s)-len(sep)] (last valid start index) 108 BEQ notfound // sep len 0 -- not found 116 LXVD2X (R8)(R0), SWAP_ // Set up swap string 119 VOR ONES, ONES, SEPMASK // Set up full SEPMASK [all …]
|
/aosp_15_r20/packages/modules/Bluetooth/system/gd/common/ |
D | lru_cache.h | 8 * http://www.apache.org/licenses/LICENSE-2.0 34 // An LRU map-cache the evict the oldest item when reaching capacity 37 // - keys are sorted from warmest to coldest 38 // - iterating through the cache won't warm up keys 39 // - operations on iterators won't warm up keys 40 // - find(), contains(), insert_or_assign() will warm up the key 41 // - insert_or_assign() will evict coldest key when cache reaches capacity 42 // - NOT THREAD SAFE 45 // - Key look-up and modification is O(1) 46 // - Memory consumption is: [all …]
|
/aosp_15_r20/build/make/tools/droiddoc/templates-pdk/assets/design/ |
H A D | default.js | 6 if (pagePath == '' || pagePath.charAt(pagePath.length - 1) == '/') { 13 // finding the relative URL to this page. This will allow us to find links on the page 22 relativePagePathParts.push(pathParts[pathParts.length - (upDirs - i) - 1]); 24 relativePagePathParts.push(pathParts[pathParts.length - 1]); 31 // select current page in sidenav and set up prev/next links if they exist 32 var $selNavLink = $('#nav').find('a[href="' + pagePath + '"]'); 37 $selListItem.closest('li.nav-section').addClass('expanded'); 39 // set up prev links 43 if ($prevListItem.hasClass('nav-section')) { 45 $prevLink = $prevListItem.find('a:last'); [all …]
|
/aosp_15_r20/external/doclava/res/assets/templates-sdk/assets/design/ |
H A D | default.js | 6 if (pagePath == '' || pagePath.charAt(pagePath.length - 1) == '/') { 13 // finding the relative URL to this page. This will allow us to find links on the page 22 relativePagePathParts.push(pathParts[pathParts.length - (upDirs - i) - 1]); 24 relativePagePathParts.push(pathParts[pathParts.length - 1]); 31 // select current page in sidenav and set up prev/next links if they exist 32 var $selNavLink = $('.nav-y').find('a[href="' + pagePath + '"]'); 39 // set up prev links 43 if ($prevListItem.hasClass('nav-section')) { 45 $prevLink = $prevListItem.find('a:last'); 48 $prevLink = $prevListItem.find('a:eq(0)'); [all …]
|
/aosp_15_r20/external/mesa3d/src/imgui/ |
H A D | imstb_textedit.h | 4 // - Fix in stb_textedit_discard_redo (see https://github.com/nothings/stb/issues/321) 5 // Grep for [DEAR IMGUI] to find the changes. 7 // stb_textedit.h - v1.13 - public domain - Sean Barrett 10 // This C header file implements the guts of a multi-line text-editing 11 // widget; you implement display, word-wrapping, and low-level string 17 // their own custom widgets and which do not have heavy text-editing 21 // Non-trivial behaviors are modelled after Windows text controls. 38 // 1.13 (2019-02-07) fix bug in undo size management 39 // 1.12 (2018-01-29) user can change STB_TEXTEDIT_KEYTYPE, fix redo to avoid crash 40 // 1.11 (2017-03-03) fix HOME on last line, dragging off single-line textfield [all …]
|
/aosp_15_r20/platform_testing/libraries/app-helpers/spectatio/spectatio-util/src/android/platform/spectatio/utils/ |
H A D | SpectatioUiUtil.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 78 * Defines the swipe fraction, allowing for a swipe to be performed from a 5-pad distance, a 79 * quarter, half, three-quarters of the screen, or the full screen. 81 * <p>DEFAULT: Swipe from one side of the screen to another side, with a 5-pad distance from the 89 * <p>THREEQUARTER: Swipe from one side, three-quarters of the distance of the entire screen 190 String.format(Locale.ENGLISH, "input keyevent --longpress %d", keyCode)); in longPressKey() 213 // Click method in UiDevice only takes x and y co-ordintes to tap, in longPressScreenCenter() 244 throw new IllegalStateException("Failed to wake up device.", ex); in wakeUp() 340 /** Find and return the UI Object that matches the given selector */ 342 validateSelector(selector, /* action= */ "Find UI Object"); in findUiObject() [all …]
|
/aosp_15_r20/external/python/cpython2/Mac/Modules/cg/ |
D | CFMLateImport.c | 14 … changes. If you're going to re-distribute the source, we require that you make 22 <11> 21/9/01 Quinn Changes for CWPro7 Mach-O build. 34 <6> 15/2/01 Quinn Modify compile-time warnings to complain if you try to build 35 this module into a Mach-O binary. 54 // � test with non-zero fragment offset in the file 89 #error CFMLateImport is not suitable for use in a Mach-O project. 91 #error CFMLateImport has not been qualified for 68K or CFM-68K use. 95 #pragma mark ----- Utility Routines ----- 118 #pragma mark ----- Late Import Engine ----- 122 // to fix up. It starts off with the first three fields, which are [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/regex/ |
D | PERFORMANCE.md | 44 turn it into a proper automaton that decodes a subset of UTF-8 which 55 life-before-main, and therefore, one cannot utter this: 68 fn some_helper_function(text: &str) -> bool { 97 therefore read-only. Unfortunately, this is not true. Each type of search 119 * find 135 **Advice**: Prefer in this order: `is_match`, `find`, `captures`. 140 * find 145 `is_match` is fastest because it doesn't actually need to find the start or the 146 end of the leftmost-first match. It can quit immediately after it knows there 150 In contrast, `find` must return both the start and end location of the [all …]
|
/aosp_15_r20/build/make/ |
H A D | CleanSpec.mk | 7 # http://www.apache.org/licenses/LICENSE-2.0 22 # $(call add-clean-step, touch -c external/sqlite/sqlite3.h) 23 # $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libz_intermediates) 25 # Always use "touch -c" and "rm -f" or "rm -rf" to gracefully deal with 31 # If you need to re-do something that's already mentioned, just copy 42 #$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/AndroidTests_intermediates) 43 #$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/core_intermediates) 44 #$(call add-clean-step, find $(OUT_DIR) -type f -name "IGTalkSession*" -print0 | xargs -0 rm -f) 45 #$(call add-clean-step, rm -rf $(PRODUCT_OUT)/data/*) 47 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS) [all …]
|
/aosp_15_r20/build/ |
D | CleanSpec.mk | 7 # http://www.apache.org/licenses/LICENSE-2.0 22 # $(call add-clean-step, touch -c external/sqlite/sqlite3.h) 23 # $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libz_intermediates) 25 # Always use "touch -c" and "rm -f" or "rm -rf" to gracefully deal with 31 # If you need to re-do something that's already mentioned, just copy 42 #$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/AndroidTests_intermediates) 43 #$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/core_intermediates) 44 #$(call add-clean-step, find $(OUT_DIR) -type f -name "IGTalkSession*" -print0 | xargs -0 rm -f) 45 #$(call add-clean-step, rm -rf $(PRODUCT_OUT)/data/*) 47 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS) [all …]
|
/aosp_15_r20/external/mesa3d/src/freedreno/decode/ |
H A D | crashdec-prefetch.c | 4 * SPDX-License-Identifier: MIT 14 * fetching up to 3 subsequent CP_INDIRECT_BUFFER contents into the ROQ before 23 * CP_FOO <- PFP/SQE is reading from here 25 * CP_BAR <- ROQ has prefetched up to here 33 * CP_FOO <- PFP/SQE is reading here 37 * CP_BAR <- ROQ has prefetched up to here 40 * larger than the size of the second IB, indicating that we need to back up 48 * CP_FOO <- PFP/SQE IB2 is reading here 53 * CP_BAR <- ROQ IB2 has prefetched up to here 55 * CP_BAZ <- PFP/SQE IB1 is reading here [all …]
|
/aosp_15_r20/external/pigweed/seed/ |
H A D | 0103.rst | 1 .. _seed-0103: 10 :proposal_date: 2023-08-16 15 ------- 17 ------- 19 component of Pigweed and Pigweed-based projects. At its core, ``pw_protobuf`` 21 encoder and decoder, but as third-party usage has grown, additional higher-level 22 APIs have sprung up, many of which were contributed by third-party developers to 35 --------------------------- 37 --------------------------- 42 .. list-table:: [all …]
|
/aosp_15_r20/cts/hostsidetests/gputools/layers/jni/ |
H A D | glesLayer.cpp | 8 * http://www.apache.org/licenses/LICENSE-2.0 53 if (funcMap.find("glCompileShader") == funcMap.end()) in glesLayer_glCompileShaderA() 54 ALOGI("%s", "Unable to find funcMap entry for glCompileShader"); in glesLayer_glCompileShaderA() 66 if (funcMap.find("glCompileShader") == funcMap.end()) in glesLayer_glCompileShaderB() 67 ALOGI("%s", "Unable to find funcMap entry for glCompileShader"); in glesLayer_glCompileShaderB() 79 if (funcMap.find("glDrawArraysInstanced") == funcMap.end()) in glesLayer_glDrawArraysInstanced() 80 ALOGI("%s", "Unable to find funcMap entry for glDrawArraysInstanced"); in glesLayer_glDrawArraysInstanced() 92 if (funcMap.find("glBindBuffer") == funcMap.end()) in glesLayer_glBindBuffer() 93 ALOGI("%s", "Unable to find funcMap entry for glBindBuffer"); in glesLayer_glBindBuffer() 105 if (funcMap.find("glGetString") == funcMap.end()) in glesLayer_glGetString() [all …]
|
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/regex-automata-0.4.6/src/hybrid/ |
H A D | regex.rs | 6 and iterating over all non-overlapping matches. This `Regex` type is limited 12 find the start offset of a match. 35 /// of a match. Thus, in order to find the bounds of any given match, a 37 /// found by the forward DFA guarantees that the reverse DFA will also find 43 /// underlying search fails. This might be because the DFA gave up because it 83 /// The forward lazy DFA. This can only find the end of a match. 85 /// The reverse lazy DFA. This can only find the start of a match. 87 /// This is built with 'all' match semantics (instead of leftmost-first) 93 /// we might wind up finding the "leftmost" starting position of a totally 103 /// If you want a non-default configuration, then use the [`Builder`] to [all …]
|
/aosp_15_r20/external/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
H A D | equivalence_relation.h | 7 // http://www.apache.org/licenses/LICENSE-2.0 36 // A disjoint-set (a.k.a. union-find or merge-find) data structure is used to 55 // constructed by repeatedly adding pairs of (typically non-equal) values that 60 // IDs in a SPIR-V binary that are known to contain the same value at run time, 64 // Each unique (up to equality) value added to the relation is copied into 82 // Look up canonical pointers to each of the values in the value pool. in MakeEquivalent() 83 const T* value1_ptr = *value_set_.find(&value1); in MakeEquivalent() 84 const T* value2_ptr = *value_set_.find(&value2); in MakeEquivalent() 92 // Find the representative for each value's equivalence class, and if they in MakeEquivalent() 94 const T* representative1 = Find(value1_ptr); in MakeEquivalent() [all …]
|
/aosp_15_r20/external/angle/third_party/spirv-tools/src/source/fuzz/ |
H A D | equivalence_relation.h | 7 // http://www.apache.org/licenses/LICENSE-2.0 36 // A disjoint-set (a.k.a. union-find or merge-find) data structure is used to 55 // constructed by repeatedly adding pairs of (typically non-equal) values that 60 // IDs in a SPIR-V binary that are known to contain the same value at run time, 64 // Each unique (up to equality) value added to the relation is copied into 82 // Look up canonical pointers to each of the values in the value pool. in MakeEquivalent() 83 const T* value1_ptr = *value_set_.find(&value1); in MakeEquivalent() 84 const T* value2_ptr = *value_set_.find(&value2); in MakeEquivalent() 92 // Find the representative for each value's equivalence class, and if they in MakeEquivalent() 94 const T* representative1 = Find(value1_ptr); in MakeEquivalent() [all …]
|
/aosp_15_r20/external/deqp-deps/SPIRV-Tools/source/fuzz/ |
D | equivalence_relation.h | 7 // http://www.apache.org/licenses/LICENSE-2.0 36 // A disjoint-set (a.k.a. union-find or merge-find) data structure is used to 55 // constructed by repeatedly adding pairs of (typically non-equal) values that 60 // IDs in a SPIR-V binary that are known to contain the same value at run time, 64 // Each unique (up to equality) value added to the relation is copied into 82 // Look up canonical pointers to each of the values in the value pool. in MakeEquivalent() 83 const T* value1_ptr = *value_set_.find(&value1); in MakeEquivalent() 84 const T* value2_ptr = *value_set_.find(&value2); in MakeEquivalent() 92 // Find the representative for each value's equivalence class, and if they in MakeEquivalent() 94 const T* representative1 = Find(value1_ptr); in MakeEquivalent() [all …]
|
/aosp_15_r20/external/icu/icu4j/perf-tests/data/collation/ |
H A D | vfear11a.txt | 28 organization with EIN [Employee Identification Number] 64-6221541 101 If they reach just 1-2% of the world's population then the total 109 At our revised rates of production, we will reach only one-third 155 to make them tax-deductible, or 165 Oxford, MS 38655-4109 169 organization with EIN [Employee Identification Number] 64-6221541, 171 Revenue Service (IRS). Donations are tax-deductible to the maximum 178 You can get up to date donation information at: 202 Example command-line FTP session: 230 By using or reading any part of this PROJECT GUTENBERG-tm [all …]
|
/aosp_15_r20/external/brotli/tests/testdata/ |
H A D | alice29.txt | 16 Down the Rabbit-Hole 27 the pleasure of making a daisy-chain would be worth the trouble 28 of getting up and picking the daisies, when suddenly a White 36 but when the Rabbit actually TOOK A WATCH OUT OF ITS WAISTCOAT- 39 before seen a rabbit with either a waistcoat-pocket, or a watch to 42 down a large rabbit-hole under the hedge. 47 The rabbit-hole went straight on like a tunnel for some way, 57 noticed that they were filled with cupboards and book-shelves; 74 me see: that would be four thousand miles down, I think--' (for, 78 listen to her, still it was good practice to say it over) `--yes, [all …]
|
/aosp_15_r20/external/guava/android/guava-tests/test/com/google/common/io/testdata/ |
H A D | alice_in_wonderland.txt | 14 Down the Rabbit-Hole 25 the pleasure of making a daisy-chain would be worth the trouble 26 of getting up and picking the daisies, when suddenly a White 34 but when the Rabbit actually TOOK A WATCH OUT OF ITS WAISTCOAT- 37 before seen a rabbit with either a waistcoat-pocket, or a watch to 40 down a large rabbit-hole under the hedge. 45 The rabbit-hole went straight on like a tunnel for some way, 55 noticed that they were filled with cupboards and book-shelves; 72 me see: that would be four thousand miles down, I think--' (for, 76 listen to her, still it was good practice to say it over) `--yes, [all …]
|
/aosp_15_r20/external/guava/guava-tests/test/com/google/common/io/testdata/ |
H A D | alice_in_wonderland.txt | 14 Down the Rabbit-Hole 25 the pleasure of making a daisy-chain would be worth the trouble 26 of getting up and picking the daisies, when suddenly a White 34 but when the Rabbit actually TOOK A WATCH OUT OF ITS WAISTCOAT- 37 before seen a rabbit with either a waistcoat-pocket, or a watch to 40 down a large rabbit-hole under the hedge. 45 The rabbit-hole went straight on like a tunnel for some way, 55 noticed that they were filled with cupboards and book-shelves; 72 me see: that would be four thousand miles down, I think--' (for, 76 listen to her, still it was good practice to say it over) `--yes, [all …]
|
/aosp_15_r20/external/autotest/client/common_lib/cros/network/ |
H A D | interface.py | 3 # Use of this source code is governed by a BSD-style license that can be 99 DeviceInfo(compatible='qcom,wcn3990-wifi'): NAME_QUALCOMM_WCN3990, 133 raise error.TestFail('Failed to find ethernet interface.') 158 # 2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast 174 # The "ip" command will return non-zero if the interface does 260 if re.match('^OF_COMPATIBLE_[0-9]+$', key): 283 logging.error('Device description not supported on non-wifi ' 295 kernel_release = self._run('uname -r').stdout.strip() 298 module_path = self._run('find %s -name %s.ko -printf %%P' % ( 317 # 2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast [all …]
|
/aosp_15_r20/external/llvm/lib/Transforms/ObjCARC/ |
H A D | ObjCARCOpts.cpp | 1 //===- ObjCARCOpts.cpp - ObjC ARC Optimization ----------------------------===// 8 //===----------------------------------------------------------------------===// 21 /// WARNING: This file knows about how certain Objective-C library functions are 23 /// behavior-preserving may break these assumptions. 25 //===----------------------------------------------------------------------===// 48 #define DEBUG_TYPE "objc-arc-opts" 56 if (Arg->hasOneUse()) { in FindSingleUseIdentifiedObject() 58 return FindSingleUseIdentifiedObject(BC->getOperand(0)); in FindSingleUseIdentifiedObject() 60 if (GEP->hasAllZeroIndices()) in FindSingleUseIdentifiedObject() 61 return FindSingleUseIdentifiedObject(GEP->getPointerOperand()); in FindSingleUseIdentifiedObject() [all …]
|
/aosp_15_r20/external/autotest/server/cros/ap_configurators/ |
H A D | web_driver_core_helpers.py | 2 # Use of this source code is governed by a BSD-style license that can be 31 if (message.find('An open modal dialog blocked') != -1 and 32 message.find('unexpected alert open') != -1): 52 if (message.find('An open modal dialog blocked') == -1 and 53 message.find('unexpected alert open') == -1): 98 """Wait for one of the element_ids to show up. 100 @param element_ids: A list of all the element ids to find. 101 @param wait_time: The time to wait before giving up. 116 """Wait for one of the items in the xpath to show up. 118 @param xpaths: A list of all the xpath's of elements to find. [all …]
|
/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/net/forwarding/ |
H A D | bridge_vlan_mcast.sh | 2 # SPDX-License-Identifier: GPL-2.0 17 ip link add l $h1 $h1.10 up type vlan id 10 29 ip link add l $h2 $h2.10 up type vlan id 10 45 ip link set dev br0 up 46 ip link set dev $swp1 up 47 ip link set dev $swp2 up 52 bridge vlan add vid 10-11 dev $swp1 master 53 bridge vlan add vid 10-11 dev $swp2 master 105 bridge -j mdb show dev br0 | 106 jq -e ".[].mdb[] | select(.grp == \"$TEST_GROUP\" and .vid == 10)" &>/dev/null [all …]
|