/kernel/linux/linux-5.10/include/linux/ |
H A D | compiler-gcc.h | 15 # error Sorry, your version of GCC is too old - please use 4.9 or newer. 21 # error Sorry, your version of GCC is too old - please use 5.1 or newer. 37 * Versions of the ppc64 compiler before 4.1 had a bug where use of
|
/third_party/node/deps/v8/src/asmjs/ |
H A D | asm-scanner.cc | 377 // Only string allowed is 'use asm' / "use asm". in ConsumeString() 378 const char* expected = "use asm"; in ConsumeString()
|
/third_party/mesa3d/src/panfrost/util/ |
H A D | nir_mod_helpers.c | 8 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 92 /* Check the uses. We want a single use, with the op `op` */ in pan_has_dest_mod() 99 nir_src *use = list_first_entry(&dest->ssa.uses, nir_src, use_link); in pan_has_dest_mod() 100 nir_instr *parent = use->parent_instr; in pan_has_dest_mod()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/etnaviv/ |
H A D | etnaviv_gem.c | 200 /* We don't use vmf->pgoff since that has the fake offset: */ in etnaviv_gem_fault() 244 WARN_ON(mapping->use == 0); in etnaviv_gem_mapping_unreference() 245 mapping->use -= 1; in etnaviv_gem_mapping_unreference() 264 * Holding the object lock prevents the use count changing in etnaviv_gem_mapping_get() 265 * beneath us. If the use count is zero, the MMU might be in etnaviv_gem_mapping_get() 269 if (mapping->use == 0) { in etnaviv_gem_mapping_get() 272 mapping->use += 1; in etnaviv_gem_mapping_get() 279 mapping->use += 1; in etnaviv_gem_mapping_get() 291 * See if we have a reaped vram mapping we can re-use before in etnaviv_gem_mapping_get() 309 mapping->use in etnaviv_gem_mapping_get() [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/etnaviv/ |
H A D | etnaviv_gem.c | 190 /* We don't use vmf->pgoff since that has the fake offset: */ in etnaviv_gem_fault() 234 WARN_ON(mapping->use == 0); in etnaviv_gem_mapping_unreference() 235 mapping->use -= 1; in etnaviv_gem_mapping_unreference() 254 * Holding the object lock prevents the use count changing in etnaviv_gem_mapping_get() 255 * beneath us. If the use count is zero, the MMU might be in etnaviv_gem_mapping_get() 259 if (mapping->use == 0) { in etnaviv_gem_mapping_get() 266 mapping->use += 1; in etnaviv_gem_mapping_get() 274 mapping->use += 1; in etnaviv_gem_mapping_get() 286 * See if we have a reaped vram mapping we can re-use before in etnaviv_gem_mapping_get() 303 mapping->use in etnaviv_gem_mapping_get() [all...] |
/third_party/python/Modules/clinic/ |
H A D | _tkinter.c.h | 651 " use=None, /)\n" 660 " use\n" 661 " if not None, then pass -use to wish"); 670 const char *use); 683 const char *use = NULL; in _tkinter_create() local 773 use = NULL; in _tkinter_create() 777 use = PyUnicode_AsUTF8AndSize(args[7], &use_length); in _tkinter_create() 778 if (use == NULL) { in _tkinter_create() 781 if (strlen(use) != (size_t)use_length) { in _tkinter_create() 791 return_value = _tkinter_create_impl(module, screenName, baseName, className, interactive, wantobjects, wantTk, sync, use); in _tkinter_create() [all...] |
/third_party/spirv-tools/source/val/ |
H A D | validate_annotation.cpp | 4 // you may not use this file except in compliance with the License. 344 auto use = pair.first; in ValidateDecorationGroup() local 345 if (use->opcode() != spv::Op::OpDecorate && in ValidateDecorationGroup() 346 use->opcode() != spv::Op::OpGroupDecorate && in ValidateDecorationGroup() 347 use->opcode() != spv::Op::OpGroupMemberDecorate && in ValidateDecorationGroup() 348 use->opcode() != spv::Op::OpName && in ValidateDecorationGroup() 349 use->opcode() != spv::Op::OpDecorateId && !use->IsNonSemantic()) { in ValidateDecorationGroup()
|
/kernel/linux/linux-5.10/net/netfilter/ |
H A D | nft_immediate.c | 171 nft_use_dec(&chain->table->use); in nft_immediate_deactivate() 210 nft_use_dec(&chain->use); in nft_immediate_destroy() 218 nft_use_dec(&chain->use); in nft_immediate_destroy() 220 nft_use_dec(&chain->use); in nft_immediate_destroy()
|
H A D | nft_objref.c | 44 if (!nft_use_inc(&obj->use)) in nft_objref_init() 76 nft_use_dec(&obj->use); in nft_objref_deactivate() 84 nft_use_inc_restore(&obj->use); in nft_objref_activate()
|
/kernel/linux/linux-6.6/net/netfilter/ |
H A D | nft_immediate.c | 171 nft_use_dec(&chain->table->use); in nft_immediate_deactivate() 210 nft_use_dec(&chain->use); in nft_immediate_destroy() 218 nft_use_dec(&chain->use); in nft_immediate_destroy() 220 nft_use_dec(&chain->use); in nft_immediate_destroy()
|
H A D | nft_objref.c | 44 if (!nft_use_inc(&obj->use)) in nft_objref_init() 77 nft_use_dec(&obj->use); in nft_objref_deactivate() 85 nft_use_inc_restore(&obj->use); in nft_objref_activate()
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_opt_phi_precision.c | 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 136 /* If we've already picked a conversion op from a previous phi use, in narrowing_conversion_op() 137 * make sure it is compatible with the current use in narrowing_conversion_op() 208 nir_foreach_use (use, &phi->dest.ssa) { in try_move_narrowing_dst() 209 op = narrowing_conversion_op(use->parent_instr, op); in try_move_narrowing_dst() 247 * directly use the new phi, skipping the conversion out of the orig in try_move_narrowing_dst() 250 nir_foreach_use (use, &phi->dest.ssa) { in try_move_narrowing_dst() 254 nir_alu_instr *alu = nir_instr_as_alu(use->parent_instr); in try_move_narrowing_dst()
|
/third_party/mesa3d/src/gallium/drivers/vc4/ |
H A D | vc4_qir_live_variables.c | 8 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 57 /* The use[] bitset marks when the block makes in qir_setup_use() 58 * use of a variable without having completely in qir_setup_use() 62 BITSET_SET(block->use, var); in qir_setup_use() 101 if (BITSET_TEST(block->use, var) || BITSET_TEST(block->def, var)) in qir_setup_def() 174 /* Sets up the def/use arrays for when variables are used-before-defined or 246 BITSET_WORD new_live_in = (block->use[i] | in qir_live_variables_dataflow() 305 block->use = rzalloc_array(c, BITSET_WORD, bitset_words); in qir_calculate_live_intervals()
|
/third_party/mesa3d/src/intel/compiler/ |
H A D | brw_vec4_live_variables.cpp | 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 45 * Sets up the use/def arrays and block-local approximation of the live ranges. 89 BITSET_SET(bd->use, v); in setup_def_use() 116 !BITSET_TEST(bd->use, v)) in setup_def_use() 175 BITSET_WORD new_livein = (bd->use[i] | in compute_live_variables() 239 block_data[i].use = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); in vec4_live_variables()
|
/third_party/mesa3d/src/gallium/drivers/etnaviv/ |
H A D | etnaviv_compiler_nir_emit.c | 7 * the rights to use, copy, modify, merge, publish, distribute, sub license, 206 if (src1.use) in etna_emit_tex() 209 if (src2.use) in etna_emit_tex() 227 if (!condition.use) { in etna_emit_jump() 246 if (!condition.use) { in etna_emit_discard()
|
/kernel/linux/linux-5.10/net/rose/ |
H A D | rose_route.c | 96 rose_neigh->use = 0; in rose_add_node() 266 rose_route->neigh1->use--; in rose_remove_route() 269 rose_route->neigh2->use--; in rose_remove_route() 334 if (rose_neigh->count == 0 && rose_neigh->use == 0) in rose_del_node() 383 sn->use = 0; in rose_add_loopback_neigh() 574 if (s->use == 0 && !s->loopback) { in rose_clear_routes() 790 rose_route->neigh1->use--; in rose_del_route_by_neigh() 796 rose_route->neigh2->use--; in rose_del_route_by_neigh() 808 * then don't use that neighbour until it is reset. Blow away all through 835 * through routes and connections that use thi [all...] |
/kernel/linux/linux-5.10/include/net/netfilter/ |
H A D | nf_tables.h | 431 * @use: number of rules references to this set 462 u32 use; member 916 * @use: number of jump references to this chain 928 u32 use; member 1041 static inline bool nft_use_inc(u32 *use) in nft_use_inc() argument 1043 if (*use == UINT_MAX) in nft_use_inc() 1046 (*use)++; in nft_use_inc() 1051 static inline void nft_use_dec(u32 *use) in nft_use_dec() argument 1053 WARN_ON_ONCE((*use)-- == 0); in nft_use_dec() 1056 /* For error and abort path: restore use counte 1057 nft_use_inc_restore(u32 *use) nft_use_inc_restore() argument 1090 u32 use; global() member 1142 u32 use; global() member 1245 u32 use; global() member [all...] |
/kernel/linux/linux-6.6/include/net/netfilter/ |
H A D | nf_tables.h | 526 * @use: number of rules references to this set 557 u32 use; member 1037 * @use: number of jump references to this chain 1049 u32 use; member 1166 static inline bool nft_use_inc(u32 *use) in nft_use_inc() argument 1168 if (*use == UINT_MAX) in nft_use_inc() 1171 (*use)++; in nft_use_inc() 1176 static inline void nft_use_dec(u32 *use) in nft_use_dec() argument 1178 WARN_ON_ONCE((*use)-- == 0); in nft_use_dec() 1181 /* For error and abort path: restore use counte 1182 nft_use_inc_restore(u32 *use) nft_use_inc_restore() argument 1216 u32 use; global() member 1275 u32 use; global() member 1380 u32 use; global() member [all...] |
/kernel/linux/linux-6.6/net/rose/ |
H A D | rose_route.c | 96 rose_neigh->use = 0; in rose_add_node() 266 rose_route->neigh1->use--; in rose_remove_route() 269 rose_route->neigh2->use--; in rose_remove_route() 334 if (rose_neigh->count == 0 && rose_neigh->use == 0) in rose_del_node() 384 sn->use = 0; in rose_add_loopback_neigh() 576 if (s->use == 0 && !s->loopback) { in rose_clear_routes() 794 rose_route->neigh1->use--; in rose_del_route_by_neigh() 800 rose_route->neigh2->use--; in rose_del_route_by_neigh() 812 * then don't use that neighbour until it is reset. Blow away all through 839 * through routes and connections that use thi [all...] |
/third_party/elfutils/libdwfl/ |
H A D | dwfl_module.c | 148 use (Dwfl_Module *mod, Dwfl_Module **tailp, Dwfl *dwfl) in use() function 180 return use (m, tailp, dwfl); in dwfl_report_module() 204 return use (mod, tailp, dwfl); in dwfl_report_module()
|
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/ |
H A D | genIndexFilters.bat | 4 # * License & terms of use: http://www.unicode.org/copyright.html * 35 # hand-edited and checked before use; it contains comments indicating 40 use Getopt::Long;
|
/third_party/vk-gl-cts/modules/egl/ |
H A D | teglMultiContextTests.cpp | 8 * you may not use this file except in compliance with the License. 73 MultiContextTest (EglTestContext& eglTestCtx, Sharing sharing, Use use, const char* name, const char* description); 82 MultiContextTest::MultiContextTest (EglTestContext& eglTestCtx, Sharing sharing, Use use, const char* name, const char* description) in MultiContextTest() argument 85 , m_use (use) in MultiContextTest()
|
/third_party/mesa3d/src/gallium/frontends/dri/ |
H A D | dri2.c | 11 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 518 /* Third use the buffers retrieved to fill the drawable info */ in dri2_allocate_textures() 973 img->use = 0; in dri2_create_image_from_winsys() 1109 int format, unsigned int use, in dri2_create_image_common() 1134 if (use & __DRI_IMAGE_USE_SCANOUT) in dri2_create_image_common() 1136 if (use & __DRI_IMAGE_USE_SHARE) in dri2_create_image_common() 1138 if (use & __DRI_IMAGE_USE_LINEAR) in dri2_create_image_common() 1140 if (use & __DRI_IMAGE_USE_CURSOR) { in dri2_create_image_common() 1145 if (use & __DRI_IMAGE_USE_PROTECTED) in dri2_create_image_common() 1147 if (use in dri2_create_image_common() 1107 dri2_create_image_common(__DRIscreen *_screen, int width, int height, int format, unsigned int use, const uint64_t *modifiers, const unsigned count, void *loaderPrivate) dri2_create_image_common() argument 1193 dri2_create_image(__DRIscreen *_screen, int width, int height, int format, unsigned int use, void *loaderPrivate) dri2_create_image() argument 1215 dri2_create_image_with_modifiers2(__DRIscreen *dri_screen, int width, int height, int format, const uint64_t *modifiers, const unsigned count, unsigned int use, void *loaderPrivate) dri2_create_image_with_modifiers2() argument 1462 dri2_validate_usage(__DRIimage *image, unsigned int use) dri2_validate_usage() argument [all...] |
/kernel/linux/linux-5.10/arch/m68k/fpsp040/ |
H A D | scale.S | 53 smi L_SCR1(%a6) |use L_SCR1 to hold sign 169 movew %d1,%d0 |use d0 for exp 179 st L_SCR2(%a6) |use L_SCR2 to capture inex 188 | Test for zero. If zero, simply use fmove to return +/- zero 227 fmovex FPTEMP(%a6),%fp0 |use fmove to set cc's
|
/kernel/linux/linux-6.6/arch/m68k/fpsp040/ |
H A D | scale.S | 53 smi L_SCR1(%a6) |use L_SCR1 to hold sign 169 movew %d1,%d0 |use d0 for exp 179 st L_SCR2(%a6) |use L_SCR2 to capture inex 188 | Test for zero. If zero, simply use fmove to return +/- zero 227 fmovex FPTEMP(%a6),%fp0 |use fmove to set cc's
|