Home
last modified time | relevance | path

Searched refs:macro (Results 201 - 225 of 1377) sorted by relevance

12345678910>>...56

/third_party/elfutils/libdw/
H A Ddwarf_macro_getparamcnt.c1 /* Return number of parameters of a macro.
36 dwarf_macro_getparamcnt (Dwarf_Macro *macro, size_t *paramcntp) in dwarf_macro_getparamcnt() argument
38 if (macro == NULL) in dwarf_macro_getparamcnt()
41 *paramcntp = libdw_macro_nforms (macro); in dwarf_macro_getparamcnt()
H A Ddwarf_macro_opcode.c1 /* Return macro opcode.
38 dwarf_macro_opcode (Dwarf_Macro *macro, unsigned int *opcodep) in dwarf_macro_opcode() argument
40 if (macro == NULL) in dwarf_macro_opcode()
43 *opcodep = macro->opcode; in dwarf_macro_opcode()
H A Ddwarf_macro_param1.c1 /* Return first macro parameter.
38 dwarf_macro_param1 (Dwarf_Macro *macro, Dwarf_Word *paramp) in dwarf_macro_param1() argument
40 if (macro == NULL) in dwarf_macro_param1()
44 if (dwarf_macro_param (macro, 0, &param) != 0) in dwarf_macro_param1()
H A Ddwarf_macro_param2.c1 /* Return second macro parameter.
38 dwarf_macro_param2 (Dwarf_Macro *macro, Dwarf_Word *paramp, const char **strp) in dwarf_macro_param2() argument
40 if (macro == NULL) in dwarf_macro_param2()
44 if (dwarf_macro_param (macro, 1, &param) != 0) in dwarf_macro_param2()
/kernel/linux/linux-5.10/arch/arc/include/asm/
H A Dlinkage.h11 #define ASM_NL ` /* use '`' to mark new line in macro */
17 .macro ST2 e, o, off
26 .macro LD2 e, o, off
36 .macro ARCFP_DATA nm
46 .macro ARCFP_CODE
/kernel/linux/linux-6.6/arch/arm64/include/asm/
H A Dkvm_mte.h14 .macro mte_switch_to_guest g_ctxt, h_ctxt, reg1
34 .macro mte_switch_to_hyp g_ctxt, h_ctxt, reg1
58 .macro mte_switch_to_guest g_ctxt, h_ctxt, reg1
61 .macro mte_switch_to_hyp g_ctxt, h_ctxt, reg1
/kernel/linux/linux-6.6/arch/arc/include/asm/
H A Dlinkage.h11 #define ASM_NL ` /* use '`' to mark new line in macro */
17 .macro ST2 e, o, off
26 .macro LD2 e, o, off
36 .macro ARCFP_DATA nm
46 .macro ARCFP_CODE
/third_party/skia/tools/
H A Dbuild_workaround_header.py38 macro = 'GPU_OP'
41 max_len = len(indent) + len(macro) + 1 + max_workaround_len + 1 + 1
46 write(indent + macro + '(' + w.upper() + ',')
47 write(indent + ' ' * (len(macro) + 1) + w + ')')
/kernel/linux/linux-6.6/arch/loongarch/include/asm/
H A Dasmmacro.h13 .macro cpu_save_nonscratch thread
27 .macro cpu_restore_nonscratch thread
42 .macro fpu_save_csr thread tmp
58 .macro fpu_restore_csr thread tmp0 tmp1
91 .macro fpu_save_cc thread tmp0 tmp1
111 .macro fpu_restore_cc thread tmp0 tmp1
131 .macro fpu_save_double thread tmp
168 .macro fpu_restore_double thread tmp
205 .macro lsx_save_data thread tmp
242 .macro lsx_restore_dat
[all...]
H A Dprefetch.h13 .macro __pref hint addr
19 .macro pref_load addr
23 .macro pref_store addr
/kernel/linux/linux-5.10/arch/loongarch/include/asm/
H A Dprefetch.h17 .macro __pref hint addr
23 .macro pref_load addr
27 .macro pref_store addr
/third_party/mesa3d/src/compiler/glsl/glcpp/
H A Dglcpp-parse.y51 const char *macro,
57 const char *macro,
133 /* Perform macro expansion in-place on the given list. */
238 glcpp_error(& @1, parser, "undefined macro %s in expression (illegal in GLES)", $2.undefined_macro);
243 glcpp_error(& @1, parser, "undefined macro %s in expression (illegal in GLES)", $2.undefined_macro);
306 * (pre-defined) macro name.
314 * By convention, all macro names containing two consecutive
319 * multiple definitions of the same name. All macro names
460 macro_t *macro = entry ? entry->data : NULL;
461 _glcpp_parser_skip_stack_push_if (parser, & @1, macro !
[all...]
/third_party/ffmpeg/libavcodec/x86/
H A Dvc1dsp_mc.asm34 %macro OP_PUT 2 ; dst, src
37 %macro OP_AVG 2 ; dst, src
41 %macro NORMALIZE_MMX 1 ; shift
48 %macro TRANSFER_DO_PACK 2 ; op, dst
54 %macro TRANSFER_DONT_PACK 2 ; op, dst
61 ; see MSPEL_FILTER13_CORE for use as UNPACK macro
62 %macro DO_UNPACK 1 ; reg
65 %macro DONT_UNPACK 1 ; reg
69 %macro LOAD_ROUNDER_MMX 1 ; round
75 %macro SHIFT2_LIN
[all...]
H A Dh264_idct_10bit.asm36 %macro STORE_DIFFx2 6
48 %macro STORE_DIFF16 5
58 %macro IDCT4_ADD_10 3
77 %macro IDCT_ADD_10 0
97 %macro ADD4x4IDCT 0
128 %macro ADD16_OP 2
139 %macro IDCT_ADD16_10 0
171 %macro IDCT_DC_ADD_OP_10 3
214 %macro IDCT8_DC_ADD 0
242 %macro A
[all...]
H A Dhevc_idct.asm243 %macro IDCT_DC 3
269 %macro IDCT_DC_NL 2 ; No loop
293 %macro TR_4x4 3
334 %macro DEFINE_BIAS 1
344 %macro LOAD_BIAS 2
352 %macro LOAD_BLOCK 7
361 %macro IDCT_4x4 1
379 %macro STORE_8 7
396 %macro E8_O8 10
420 %macro TR_8x
[all...]
/third_party/node/deps/v8/src/torque/
H A Dinstructions.cc210 LowerParameterTypes(macro->signature().parameter_types); in TypeInstruction()
221 if (macro->IsTransitioning()) { in TypeInstruction()
231 stack->PushMany(LowerType(macro->signature().return_type)); in TypeInstruction()
237 LowerParameterTypes(macro->signature().parameter_types); in RecomputeDefinitionLocations()
258 return LowerType(macro->signature().return_type).size(); in GetValueDefinitionCount()
269 os << "CallCsaMacro " << instruction.macro->ReadableName(); in operator <<()
282 LowerParameterTypes(macro->signature().parameter_types); in TypeInstruction()
293 if (label_blocks.size() != macro->signature().labels.size()) { in TypeInstruction()
299 LowerParameterTypes(macro->signature().labels[i].types)); in TypeInstruction()
303 if (macro in TypeInstruction()
[all...]
/kernel/linux/linux-5.10/arch/xtensa/include/asm/
H A Dcoprocessor.h22 .macro xchal_sa_start a b
27 .macro xchal_sa_align ptr minofs maxofs ofsalign totalign
36 .macro save_xtregs_opt ptr clb at1 at2 at3 at4 offset
43 .macro load_xtregs_opt ptr clb at1 at2 at3 at4 offset
55 .macro save_xtregs_user ptr clb at1 at2 at3 at4 offset
62 .macro load_xtregs_user ptr clb at1 at2 at3 at4 offset
/kernel/linux/linux-6.6/arch/arm/lib/
H A Dbitops.h6 .macro bitop, name, instr
31 .macro __testop, name, instr, store, barrier
61 .macro testop, name, instr, store
65 .macro sync_testop, name, instr, store
69 .macro bitop, name, instr
96 .macro testop, name, instr, store
/kernel/linux/linux-6.6/arch/xtensa/include/asm/
H A Dcoprocessor.h22 .macro xchal_sa_start a b
27 .macro xchal_sa_align ptr minofs maxofs ofsalign totalign
36 .macro save_xtregs_opt ptr clb at1 at2 at3 at4 offset
43 .macro load_xtregs_opt ptr clb at1 at2 at3 at4 offset
55 .macro save_xtregs_user ptr clb at1 at2 at3 at4 offset
62 .macro load_xtregs_user ptr clb at1 at2 at3 at4 offset
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/
H A Dmacro_checker.py58 macros_pattern = '|'.join((re.escape(macro)
59 for macro in self.entity_db.macros))
61 # surrounding an entire macro.
63 r'(?P<formatting>\**|_*)(?P<macro>{}):(?P<entity_name>[\w*]+((?P<subscript>[\[][^\]]*[\]]))?)(?P=formatting)'.format(macros_pattern))
97 def findMacroAndEntity(self, macro, entity):
98 """Look up EntityData by macro and entity pair.
102 return self.entity_db.findMacroAndEntity(macro, entity)
134 def isLinkedMacro(self, macro):
135 """Identify if a macro is considered a "linked" macro
[all...]
/third_party/ffmpeg/libavcodec/arm/
H A Dhpeldsp_neon.S24 .macro pixels16 rnd=1, avg=0
55 .macro pixels16_x2 rnd=1, avg=0
78 .macro pixels16_y2 rnd=1, avg=0
116 .macro pixels16_xy2 rnd=1, avg=0
194 .macro pixels8 rnd=1, avg=0
223 .macro pixels8_x2 rnd=1, avg=0
245 .macro pixels8_y2 rnd=1, avg=0
281 .macro pixels8_xy2 rnd=1, avg=0
342 .macro pixfunc pfx, name, suf, rnd=1, avg=0
344 .macro av
[all...]
/third_party/ffmpeg/libavfilter/x86/
H A Dvf_blend.asm41 %macro BLEND_INIT 2-3 0
60 %macro BLEND_END 0
69 %macro BLEND_SIMPLE 2-3 0
85 %macro GRAINEXTRACT 3-4 0
117 %macro MULTIPLY 3 ; a, b, pw_1
125 %macro SCREEN 4 ; a, b, pw_1, pw_255
132 %macro BLEND_MULTIPLY 0
157 %macro BLEND_SCREEN 0
185 %macro AVERAGE 2-3 0
206 %macro GRAINMERG
[all...]
/kernel/linux/linux-5.10/arch/arm64/include/asm/
H A Dkvm_asm.h215 * The goal of this macro is to return a symbol's address based on a
261 .macro get_host_ctxt reg, tmp
266 .macro get_vcpu_ptr vcpu, ctxt
271 .macro get_loaded_vcpu vcpu, ctxt
276 .macro set_loaded_vcpu vcpu, ctxt, tmp
289 .macro _kvm_extable, from, to
304 .macro save_callee_saved_regs ctxt
314 .macro restore_callee_saved_regs ctxt
325 .macro save_sp_el0 ctxt, tmp
330 .macro restore_sp_el
[all...]
/kernel/linux/linux-5.10/arch/arm64/kernel/
H A Dentry-ftrace.S36 .macro ftrace_regs_entry, allregs=0
179 .macro mcount_enter
184 .macro mcount_exit
189 .macro mcount_adjust_addr rd, rn
194 .macro mcount_get_parent_fp reg
200 .macro mcount_get_pc0 reg
204 .macro mcount_get_pc reg
209 .macro mcount_get_lr reg
214 .macro mcount_get_lr_addr reg
/kernel/linux/linux-5.10/arch/arm/kernel/
H A Dentry-ftrace.S31 .macro mcount_adjust_addr rd, rn
36 .macro __mcount suffix
68 .macro __ftrace_regs_caller
117 .macro __ftrace_graph_regs_caller
137 .macro __ftrace_caller suffix
163 .macro __ftrace_graph_caller
182 .macro mcount_enter
192 .macro mcount_get_lr reg
196 .macro mcount_exit

Completed in 17 milliseconds

12345678910>>...56