/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | loop_fission.cpp | 4 // you may not use this file except in compliance with the License. 46 // to the current loop header block. We then use the two sets built in step 2 to 82 // Traverse the def use chain of |inst| and add the users and uses of |inst| 127 // We create this functor to traverse the use def chain to build the in TraverseUseDef() 175 // Wrapper functor for the use traversal. in TraverseUseDef() 176 auto traverse_use = [&traverser_functor](Instruction* use, uint32_t) { in TraverseUseDef() 177 traverser_functor(use); in TraverseUseDef() 183 // We start the traversal of the use def graph by invoking the above in TraverseUseDef()
|
H A D | scalar_replacement_pass.cpp | 4 // you may not use this file except in compliance with the License. 339 // indexes) or a direct use of the replacement variable. in ReplaceAccessChain() 375 // Replace with a use of the variable. in ReplaceAccessChain() 932 this](Instruction* use) { in GetUsedComponents() 933 switch (use->opcode()) { in GetUsedComponents() 937 if (def_use_mgr->WhileEachUser(use, [&t](Instruction* use2) { in GetUsedComponents() 962 uint32_t index_id = use->GetSingleWordInOperand(1); in GetUsedComponents()
|
H A D | loop_unswitch_pass.cpp | 4 // you may not use this file except in compliance with the License. 99 // position |ip|. This function preserves the def/use and instr to block 120 // If none are possible, then it will just use 0. The value does not matter in GetValueForDefaultPathForSwitch() 228 // Step 2: Build a new preheader for |loop_|, use the old one in PerformUnswitch() 482 for (auto use : use_list) { in SpecializeLoop() 483 Instruction* inst = use.first; in SpecializeLoop() 484 uint32_t operand_index = use.second; in SpecializeLoop() 490 assert(cst_value && "We do not have a value to use."); in SpecializeLoop()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | DivergenceAnalysis.cpp | 14 // GPU programs typically use the SIMD execution model, where multiple threads 57 // because %tid is not on its use-def chains, %a is sync dependent on %tid 458 bool GPUDivergenceAnalysis::isDivergentUse(const Use &use) const { in isDivergentUse() 459 return DA.isDivergentUse(use); in isDivergentUse()
|
/third_party/zlib/contrib/pascal/ |
H A D | zlibpas.pas | 5 * For conditions of distribution and use, see copyright notice in readme.txt 46 reserved: LongInt; (* reserved for future use *)
|
/kernel/linux/linux-5.10/arch/m68k/fpsp040/ |
H A D | util.S | 119 | ;use FPCR 133 bra ovf_fpcr |none of the above, use FPCR 186 movel %a1@(%d0:l:4),%a1 |use d0 as index to the table 332 | use precision from FPCR{7:6} 337 | use precision in FPCR{7:6} 516 movel %a1@(%d0:l:4),%a1 |use d0 as index to the table
|
/kernel/linux/linux-6.6/arch/m68k/fpsp040/ |
H A D | util.S | 119 | ;use FPCR 133 bra ovf_fpcr |none of the above, use FPCR 186 movel %a1@(%d0:l:4),%a1 |use d0 as index to the table 332 | use precision from FPCR{7:6} 337 | use precision in FPCR{7:6} 516 movel %a1@(%d0:l:4),%a1 |use d0 as index to the table
|
/kernel/linux/linux-5.10/net/netfilter/ |
H A D | nfnetlink_log.c | 59 refcount_t use; /* use count */ member 117 refcount_inc(&inst->use); in instance_get() 127 if (inst && !refcount_inc_not_zero(&inst->use)) in instance_lookup_get() 147 if (inst && refcount_dec_and_test(&inst->use)) in instance_put() 182 refcount_set(&inst->use, 2); in instance_create() 223 /* lockless readers wont be able to use us */ in __instance_destroy() 1085 inst->flushtimeout, refcount_read(&inst->use)); in seq_show()
|
/kernel/linux/linux-6.6/net/netfilter/ |
H A D | nfnetlink_log.c | 63 refcount_t use; /* use count */ member 122 refcount_inc(&inst->use); in instance_get() 131 if (inst && !refcount_inc_not_zero(&inst->use)) in instance_lookup_get_rcu() 162 if (inst && refcount_dec_and_test(&inst->use)) in instance_put() 197 refcount_set(&inst->use, 2); in instance_create() 238 /* lockless readers wont be able to use us */ in __instance_destroy() 1103 inst->flushtimeout, refcount_read(&inst->use)); in seq_show()
|
/third_party/gn/src/gn/ |
H A D | variables.cc | 262 A fully-qualified label representing the current toolchain. You can use this 457 When you use this, both targets must be included in a final binary for it to 493 So when you use allow_circular_includes_from, make sure that any compiler 561 to the script. Typically you would use source expansion (see "gn help 722 # The extension uses //base but does not use any function calling into 786 To target one of these variants individually, use "cflags_c", "cflags_cc", 866 pass to the post-processing script. Typically you would use source expansion 1017 # Don't use the default RTTI config that BUILDCONFIG applied to us. 1050 input files to a script, use "inputs". 1146 one source file that the script is being run over, you can use th [all...] |
/third_party/ffmpeg/libavutil/x86/ |
H A D | x86inc.asm | 11 ;* Permission to use, copy, modify, and/or distribute this software for any 122 ; into registers at the start, and make no other use of the stack. Luckily that 133 ; pointer (to not invalidate r0m etc.). To prevent the use of an extra 144 ; TODO Some functions can use some args directly from the stack. If they're the 803 ; but if the last function in a source file doesn't use any of the standard macros for its epilogue, 939 ; Prefer registers 16-31 over 0-15 to avoid having to use vzeroupper 1034 ; I often want to use macros that permute their arguments. e.g. there's no 1216 %error use of ``%1'' %2 instruction in cpuname function: current_function 1218 %error use of ``%1'' sse2 instruction in cpuname function: current_function 1617 ; This lets us use tzcn [all...] |
/kernel/linux/linux-5.10/scripts/kconfig/ |
H A D | menu.c | 180 * expression but use a copy of it. Otherwise the in menu_add_prompt() 246 char *use; in sym_check_prop() local 278 use = prop->type == P_SELECT ? "select" : "imply"; in sym_check_prop() 283 "not bool or tristate", sym->name, use); in sym_check_prop() 290 "tristate type", sym2->name, use); in sym_check_prop()
|
/kernel/linux/linux-6.6/scripts/kconfig/ |
H A D | menu.c | 181 * expression but use a copy of it. Otherwise the in menu_add_prompt() 225 char *use; in sym_check_prop() local 257 use = prop->type == P_SELECT ? "select" : "imply"; in sym_check_prop() 262 "not bool or tristate", sym->name, use); in sym_check_prop() 269 "tristate type", sym2->name, use); in sym_check_prop()
|
/third_party/libunwind/libunwind/doc/ |
H A D | libunwind-ia64.tex | 27 possible for platform-dependent unwind code to use 32 One special feature of IA-64 is the use of NaT bits to support 139 as ``reserved for future use''. Attempting to access such registers 172 use \Const{UNW\_IA64\_BSP} instead.
|
/third_party/node/deps/v8/src/compiler/ |
H A D | node-matchers.h | 312 for (Node* use : input->uses()) { in OwnsInput() 313 if (use != node()) { in OwnsInput() 746 for (auto use : node->use_edges()) { in OwnedByAddressingOperand() 747 Node* from = use.from(); in OwnedByAddressingOperand() 757 // If the subtrahend is not a constant, it is not an addressing use. in OwnedByAddressingOperand() 762 // If the subtrahend is not a constant, it is not an addressing use. in OwnedByAddressingOperand() 768 // If the stored value is this node, it is not an addressing use. in OwnedByAddressingOperand() 773 // Non-addressing use found. in OwnedByAddressingOperand()
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | scalar_replacement_pass.cpp | 4 // you may not use this file except in compliance with the License. 339 // indexes) or a direct use of the replacement variable. in ReplaceAccessChain() 375 // Replace with a use of the variable. in ReplaceAccessChain() 932 this](Instruction* use) { in GetUsedComponents() 933 switch (use->opcode()) { in GetUsedComponents() 937 if (def_use_mgr->WhileEachUser(use, [&t](Instruction* use2) { in GetUsedComponents() 962 uint32_t index_id = use->GetSingleWordInOperand(1); in GetUsedComponents()
|
H A D | loop_unswitch_pass.cpp | 4 // you may not use this file except in compliance with the License. 99 // position |ip|. This function preserves the def/use and instr to block 120 // If none are possible, then it will just use 0. The value does not matter in GetValueForDefaultPathForSwitch() 228 // Step 2: Build a new preheader for |loop_|, use the old one in PerformUnswitch() 482 for (auto use : use_list) { in SpecializeLoop() 483 Instruction* inst = use.first; in SpecializeLoop() 484 uint32_t operand_index = use.second; in SpecializeLoop() 490 assert(cst_value && "We do not have a value to use."); in SpecializeLoop()
|
/third_party/python/Tools/msi/ |
H A D | buildrelease.bat | 5 rem To use it to build alternative releases, you should clone this file
251 echo use the default task (-m test --pgo).
253 echo x86 and ARM64 builds will never use PGO. ARM64 builds will never generate
|
/third_party/spirv-tools/source/opt/ |
H A D | loop_unswitch_pass.cpp | 4 // you may not use this file except in compliance with the License. 92 // position |ip|. This function preserves the def/use and instr to block 113 // If none are possible, then it will just use 0. The value does not matter in GetValueForDefaultPathForSwitch() 221 // Step 2: Build a new preheader for |loop_|, use the old one in PerformUnswitch() 475 for (auto use : use_list) { in SpecializeLoop() 476 Instruction* inst = use.first; in SpecializeLoop() 477 uint32_t operand_index = use.second; in SpecializeLoop() 483 assert(cst_value && "We do not have a value to use."); in SpecializeLoop()
|
/kernel/linux/linux-5.10/arch/arm/mach-tegra/ |
H A D | sleep.S | 144 orr r0, r0, #(4 << 4) @ use PLLP in run mode burst
|
/kernel/linux/linux-6.6/arch/arm/mach-tegra/ |
H A D | sleep.S | 146 orr r0, r0, #(4 << 4) @ use PLLP in run mode burst
|
/kernel/linux/linux-5.10/include/net/netfilter/ |
H A D | nf_conntrack_expect.h | 43 refcount_t use; member
|
/kernel/linux/linux-5.10/drivers/gpu/drm/etnaviv/ |
H A D | etnaviv_gem.h | 30 unsigned int use; member
|
H A D | etnaviv_mmu.h | 44 unsigned int use; member
|
/kernel/linux/linux-6.6/include/net/netfilter/ |
H A D | nf_conntrack_expect.h | 30 refcount_t use; member
|