/third_party/skia/third_party/externals/brotli/research/ |
H A D | sieve.cc | 18 static TextIdx dryRun(TextIdx sliceLen, Slot* map, TextIdx* shortcut, in dryRun() argument 28 Slot& item = map[shortcut[i]]; in dryRun() 49 Slot* map, TextIdx* shortcut, TextIdx end, TextIdx middle, in createDictionary() 59 Slot& item = map[shortcut[i]]; in createDictionary() 137 std::vector<TextIdx> shortcut; in sieve_generate() local 181 shortcut.push_back(slot); in sieve_generate() 189 shortcut.push_back(hashSlot); in sieve_generate() 201 sliceLen, map.data(), shortcut.data(), end, end, a, ++piece); in sieve_generate() 205 data, sliceLen, map.data(), shortcut.data(), end, end, a, ++piece); in sieve_generate() 209 size = dryRun(sliceLen, map.data(), shortcut in sieve_generate() 48 createDictionary(const uint8_t* data, TextIdx sliceLen, Slot* map, TextIdx* shortcut, TextIdx end, TextIdx middle, SampleIdx minPresence, SampleIdx iteration) createDictionary() argument [all...] |
H A D | durchschlag.cc | 79 precondition: end + span == len(shortcut) */ 81 std::vector<MetaSlot>* map, TextIdx span, const TextIdx* shortcut, in buildCandidatesList() 96 MetaSlot& item = slots[shortcut[j]]; in buildCandidatesList() 107 TextIdx slice = shortcut[i + span - 1]; in buildCandidatesList() 119 MetaSlot& drop = slots[shortcut[i]]; in buildCandidatesList() 129 TextIdx slice = shortcut[i + span - 1]; in buildCandidatesList() 151 MetaSlot& drop = slots[shortcut[i]]; in buildCandidatesList() 167 precondition: end + span == len(shortcut) */ 169 std::vector<MetaSlot>* map, TextIdx span, const TextIdx* shortcut, in rebuildCandidatesList() 188 MetaSlot& item = slots[shortcut[ in rebuildCandidatesList() 80 buildCandidatesList(std::vector<Candidate>* candidates, std::vector<MetaSlot>* map, TextIdx span, const TextIdx* shortcut, TextIdx end) buildCandidatesList() argument 168 rebuildCandidatesList(std::vector<TextIdx>* candidates, std::vector<MetaSlot>* map, TextIdx span, const TextIdx* shortcut, TextIdx end, TextIdx* next) rebuildCandidatesList() argument 425 ScoreSlices(const std::vector<TextIdx>& offsets, std::vector<MetaSlot>& map, const TextIdx* shortcut, TextIdx end) ScoreSlices() argument 462 const TextIdx* shortcut = context.sliceMap.data(); durchschlagGenerateExclusive() local 568 const TextIdx* shortcut = context.sliceMap.data(); durchschlagGenerateCollaborative() local 665 const TextIdx* shortcut = context.sliceMap.data(); durchschlag_distill() local 707 const TextIdx* shortcut = context.sliceMap.data(); durchschlag_purify() local [all...] |
/third_party/python/Lib/turtledemo/ |
H A D | __main__.py | 227 shortcut = 'Command' if darwin else 'Control' 228 text.bind_all('<%s-minus>' % shortcut, self.decrease_size) 229 text.bind_all('<%s-underscore>' % shortcut, self.decrease_size) 230 text.bind_all('<%s-equal>' % shortcut, self.increase_size) 231 text.bind_all('<%s-plus>' % shortcut, self.increase_size)
|
/third_party/node/deps/brotli/c/enc/ |
H A D | backward_references_hq.h | 52 |cost| is invalidated in favor of |shortcut|. On path back-tracing pass 61 uint32_t shortcut; member
|
H A D | backward_references_hq.c | 349 return nodes[pos - clen - ilen].u.shortcut; in ComputeDistanceShortcut() 365 size_t p = nodes[pos].u.shortcut; in ComputeDistanceCache() 372 p = nodes[p - clen - ilen].u.shortcut; in ComputeDistanceCache() 387 nodes[pos].u.shortcut = ComputeDistanceShortcut( in EvaluateNode()
|
/third_party/skia/third_party/externals/brotli/c/enc/ |
H A D | backward_references_hq.h | 52 |cost| is invalidated in favor of |shortcut|. On path back-tracing pass 61 uint32_t shortcut; member
|
H A D | backward_references_hq.c | 349 return nodes[pos - clen - ilen].u.shortcut; in ComputeDistanceShortcut() 365 size_t p = nodes[pos].u.shortcut; in ComputeDistanceCache() 372 p = nodes[p - clen - ilen].u.shortcut; in ComputeDistanceCache() 387 nodes[pos].u.shortcut = ComputeDistanceShortcut( in EvaluateNode()
|
/third_party/node/deps/npm/node_modules/hosted-git-info/lib/ |
H A D | index.js | 142 shortcut (opts) {
|
/third_party/node/deps/npm/node_modules/pacote/lib/ |
H A D | git.js | 50 this.from = this.spec.hosted.shortcut({ noCommittish: false }) 53 // shortcut: avoid full clone when we can go straight to the tgz
|
/third_party/node/deps/openssl/config/archs/darwin64-x86_64-cc/asm_avx2/crypto/aes/ |
H A D | aes-x86_64.s | 968 jmp L$10shortcut 973 L$10shortcut: 1021 jmp L$12shortcut 1026 L$12shortcut: 1084 jmp L$14shortcut 1089 L$14shortcut:
|
/third_party/node/deps/openssl/config/archs/darwin64-x86_64-cc/asm/crypto/aes/ |
H A D | aes-x86_64.s | 968 jmp L$10shortcut 973 L$10shortcut: 1021 jmp L$12shortcut 1026 L$12shortcut: 1084 jmp L$14shortcut 1089 L$14shortcut:
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_widgets.cpp | 276 // FIXME-OPT: Handle the %s shortcut? in TextV() 7007 bool ImGui::MenuItemEx(const char* label, const char* icon, const char* shortcut, bool selected, bool enabled) 7029 // Note that in this situation: we don't render the shortcut, we render a highlight instead of the selected tick mark. 7045 float shortcut_w = (shortcut && shortcut[0]) ? CalcTextSize(shortcut, NULL).x : 0.0f; 7056 RenderText(pos + ImVec2(offsets->OffsetShortcut + stretch_w, 0.0f), shortcut, NULL, false); 7070 bool ImGui::MenuItem(const char* label, const char* shortcut, bool selected, bool enabled) 7072 return MenuItemEx(label, NULL, shortcut, selected, enabled); 7075 bool ImGui::MenuItem(const char* label, const char* shortcut, boo [all...] |
H A D | imgui.h | 359 IMGUI_API float GetWindowWidth(); // get current window width (shortcut for GetWindowSize().x) 360 IMGUI_API float GetWindowHeight(); // get current window height (shortcut for GetWindowSize().y) 402 IMGUI_API void PushFont(ImFont* font); // use NULL as a shortcut to push default font 488 IMGUI_API void TextColored(const ImVec4& col, const char* fmt, ...) IM_FMTARGS(2); // shortcut for PushStyleColor(ImGuiCol_Text, col); Text(fmt, ...); PopStyleColor(); 490 IMGUI_API void TextDisabled(const char* fmt, ...) IM_FMTARGS(1); // shortcut for PushStyleColor(ImGuiCol_Text, style.Colors[ImGuiCol_TextDisabled]); Text(fmt, ...); PopStyleColor(); 492 IMGUI_API void TextWrapped(const char* fmt, ...) IM_FMTARGS(1); // shortcut for PushTextWrapPos(0.0f); Text(fmt, ...); PopTextWrapPos();. Note that this won't work on an auto-resizing window if there's no other widgets to extend the window width, yoy may need to set a size using SetNextWindowSize(). 496 IMGUI_API void BulletText(const char* fmt, ...) IM_FMTARGS(1); // shortcut for Bullet()+Text() 512 IMGUI_API bool RadioButton(const char* label, int* v, int v_button); // shortcut to handle the above pattern when value is an integer 643 // - Those are merely shortcut to calling Text() with a format string. Output single value in "name: value" format (tip: freely declare more in your code to handle your types. you can add functions to the ImGui namespace) 660 IMGUI_API bool MenuItem(const char* label, const char* shortcut [all...] |
H A D | imgui_internal.h | 2513 IMGUI_API bool MenuItemEx(const char* label, const char* icon, const char* shortcut = NULL, bool selected = false, bool enabled = true);
|
/third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/crypto/chacha/ |
H A D | chacha-armv4.S | 221 addlo r12,sp,#4*(0) @ shortcut or ... 223 addlo r14,sp,#4*(0) @ shortcut or ...
|
/third_party/node/deps/openssl/config/archs/linux-armv4/asm/crypto/chacha/ |
H A D | chacha-armv4.S | 221 addlo r12,sp,#4*(0) @ shortcut or ... 223 addlo r14,sp,#4*(0) @ shortcut or ...
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui.h | 262 IMGUI_API float GetWindowWidth(); // get current window width (shortcut for GetWindowSize().x) 263 IMGUI_API float GetWindowHeight(); // get current window height (shortcut for GetWindowSize().y) 299 IMGUI_API void PushFont(ImFont* font); // use NULL as a shortcut to push default font 373 IMGUI_API void TextColored(const ImVec4& col, const char* fmt, ...) IM_FMTARGS(2); // shortcut for PushStyleColor(ImGuiCol_Text, col); Text(fmt, ...); PopStyleColor(); 375 IMGUI_API void TextDisabled(const char* fmt, ...) IM_FMTARGS(1); // shortcut for PushStyleColor(ImGuiCol_Text, style.Colors[ImGuiCol_TextDisabled]); Text(fmt, ...); PopStyleColor(); 377 IMGUI_API void TextWrapped(const char* fmt, ...) IM_FMTARGS(1); // shortcut for PushTextWrapPos(0.0f); Text(fmt, ...); PopTextWrapPos();. Note that this won't work on an auto-resizing window if there's no other widgets to extend the window width, yoy may need to set a size using SetNextWindowSize(). 381 IMGUI_API void BulletText(const char* fmt, ...) IM_FMTARGS(1); // shortcut for Bullet()+Text() 395 IMGUI_API bool RadioButton(const char* label, int* v, int v_button); // shortcut to handle the above pattern when value is an integer 512 // - Those are merely shortcut to calling Text() with a format string. Output single value in "name: value" format (tip: freely declare more in your code to handle your types. you can add functions to the ImGui namespace) 525 IMGUI_API bool MenuItem(const char* label, const char* shortcut [all...] |
H A D | imgui_widgets.cpp | 5744 bool ImGui::MenuItem(const char* label, const char* shortcut, bool selected, bool enabled) 5760 // Note that in this situation we render neither the shortcut neither the selected tick mark 5770 ImVec2 shortcut_size = shortcut ? CalcTextSize(shortcut, NULL) : ImVec2(0.0f, 0.0f); 5777 RenderText(pos + ImVec2(window->MenuColumns.Pos[1] + extra_w, 0.0f), shortcut, NULL, false); 5788 bool ImGui::MenuItem(const char* label, const char* shortcut, bool* p_selected, bool enabled) 5790 if (MenuItem(label, shortcut, p_selected ? *p_selected : false, enabled))
|
/third_party/node/deps/openssl/openssl/external/perl/Text-Template-1.56/lib/Text/ |
H A D | Template.pm | 858 return at the end. This is a little cumbersome. There is a shortcut.
|
/third_party/openssl/external/perl/Text-Template-1.56/lib/Text/ |
H A D | Template.pm | 858 return at the end. This is a little cumbersome. There is a shortcut.
|