HomeSort by: relevance | last modified time | path
    Searched refs:guard (Results 1 - 25 of 26) sorted by relevancy

1 2

  /xsrc/external/mit/MesaLib/dist/src/compiler/isaspec/
decode.py 217 #ifndef _${guard}_
218 #define _${guard}_
258 #endif /* _${guard}_ */
285 #ifndef _${guard}_
286 #define _${guard}_
290 #endif /* _${guard}_ */
302 guard = os.path.basename(glue_h).upper().replace("-", "_").replace(".", "_") variable
303 f.write(Template(glue).render(guard=guard, isa=os.path.basename(dst_h)))
309 guard = os.path.basename(dst_h).upper().replace("-", "_").replace(".", "_" variable
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/vulkan/util/
vk_entrypoints_gen.py 40 #ifndef ${guard}
41 #define ${guard}
61 % if e.guard is not None:
62 #ifdef ${e.guard}
67 % if e.guard is not None:
68 #endif // ${e.guard}
73 % if e.guard is not None:
74 #ifdef ${e.guard}
79 % if e.guard is not None:
80 #endif // ${e.guard}
    [all...]
vk_dispatch_table_gen.py 80 % if e.guard is not None:
81 #ifdef ${e.guard}
93 % if e.guard is not None:
113 % if e.guard is not None:
114 #ifdef ${e.guard}
117 % if e.guard is not None:
255 % if e.guard is not None:
256 #ifdef ${e.guard}
264 % if e.guard is not None:
605 % if e.guard is not None
    [all...]
vk_cmd_queue_gen.py 67 % if c.guard is not None:
68 #ifdef ${c.guard}
71 % if c.guard is not None:
72 #endif // ${c.guard}
83 % if c.guard is not None:
84 #ifdef ${c.guard}
91 % if c.guard is not None:
92 #endif // ${c.guard}
104 % if c.guard is not None:
105 #ifdef ${c.guard}
    [all...]
gen_enum_to_str.py 70 % if enum.guard:
71 #ifdef ${enum.guard}
87 % if enum.guard:
143 % if enum.guard:
144 #ifdef ${enum.guard}
147 % if enum.guard:
188 % if enum.guard:
189 #ifdef ${enum.guard}
192 % if enum.guard:
202 % if enum.guard
    [all...]
  /xsrc/external/mit/twm/dist/
ylwrap 40 # guard FILE
42 # The CPP macro used to guard inclusion of FILE.
43 guard () function
132 # guard in its implementation file.
152 sed_fix_header_guards="${sed_fix_header_guards}s|"`guard "$from"`"|"`guard "$to"`"|g;"
  /xsrc/external/mit/xgc/dist/
ylwrap 40 # guard FILE
42 # The CPP macro used to guard inclusion of FILE.
43 guard () function
132 # guard in its implementation file.
152 sed_fix_header_guards="${sed_fix_header_guards}s|"`guard "$from"`"|"`guard "$to"`"|g;"
  /xsrc/external/mit/MesaLib/dist/src/compiler/nir/
nir_lower_fp16_conv.c 69 half_rounded(nir_builder *b, nir_ssa_def *value, nir_ssa_def *guard, nir_ssa_def *sticky,
74 return nir_iadd(b, value, nir_iand(b, guard, nir_ior(b, sticky, value)));
78 nir_ior(b, guard, sticky)));
82 nir_ior(b, guard, sticky)));
140 nir_ssa_def *guard = nir_iand(b, nir_ushr(b, abs, nir_imm_int(b, 12)), one); local
142 nir_ssa_def *normal_fp16 = half_rounded(b, value, guard, sticky, sign, mode);
151 guard = nir_iand(b, nir_ushr(b, masked, i), one);
153 nir_ssa_def *denormal_fp16 = half_rounded(b, value, guard, sticky, sign, mode);
  /xsrc/external/mit/xkbcomp/dist/
ylwrap 40 # guard FILE
42 # The CPP macro used to guard inclusion of FILE.
43 guard () function
130 # guard in its implementation file.
150 sed_fix_header_guards="${sed_fix_header_guards}s|"`guard "$from"`"|"`guard "$to"`"|g;"
  /xsrc/external/mit/xkbevd/dist/
ylwrap 40 # guard FILE
42 # The CPP macro used to guard inclusion of FILE.
43 guard () function
130 # guard in its implementation file.
150 sed_fix_header_guards="${sed_fix_header_guards}s|"`guard "$from"`"|"`guard "$to"`"|g;"
  /xsrc/external/mit/xorg-server/dist/
ylwrap 40 # guard FILE
42 # The CPP macro used to guard inclusion of FILE.
43 guard () function
130 # guard in its implementation file.
150 sed_fix_header_guards="${sed_fix_header_guards}s|"`guard "$from"`"|"`guard "$to"`"|g;"
  /xsrc/external/mit/MesaLib.old/dist/src/amd/vulkan/
radv_entrypoints_gen.py 55 % if e.guard is not None:
56 #ifdef ${e.guard}
73 % if e.guard is not None:
74 #ifdef ${e.guard}
79 % if e.guard is not None:
80 #endif // ${e.guard}
161 % if e.guard is not None:
162 #ifdef ${e.guard}
165 % if e.guard is not None:
166 #endif // ${e.guard}
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/freedreno/vulkan/
tu_entrypoints_gen.py 55 % if e.guard is not None:
56 #ifdef ${e.guard}
73 % if e.guard is not None:
74 #ifdef ${e.guard}
79 % if e.guard is not None:
80 #endif // ${e.guard}
161 % if e.guard is not None:
162 #ifdef ${e.guard}
165 % if e.guard is not None:
166 #endif // ${e.guard}
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/
zink_extensions.py 72 guard = False variable in class:Extension
75 properties=False, features=False, conditions=None, guard=False,
84 self.guard = guard
zink_device_info.py 33 # Extension(name, alias="", required=False, properties=False, features=False, conditions=None, guard=False)
60 # - guard: adds a #if defined(`extension_name`)/#endif guard around the code generated for this Extension.
170 guard=True), variable
236 # - guard(ext) : surrounds the body with an if-def guard according to
237 # `ext.extension_name()` if `ext.guard` is True.
240 %if ext.guard:
244 %if ext.guard:
250 <%def name="guard(ext)">${capture(guard_, ext, body=caller.body).strip('\\r\\n')}</%def
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/freedreno/rnn/
headergen2.c 59 char *guard; member in struct:fout
371 fprintf (f.file, "#ifndef %s\n", f.guard);
372 fprintf (f.file, "#define %s\n", f.guard);
458 f.guard = strdup(pretty);
459 for (j = 0; j < strlen(f.guard); j++)
460 if (isalnum(f.guard[j]))
461 f.guard[j] = toupper(f.guard[j]);
463 f.guard[j] = '_';
503 fprintf (fouts[i].file, "\n#endif /* %s */\n", fouts[i].guard);
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/intel/vulkan/
anv_entrypoints_gen.py 58 % if e.guard is not None:
59 #ifdef ${e.guard}
77 % if e.guard is not None:
78 #ifdef ${e.guard}
100 % if e.guard is not None:
101 #ifdef ${e.guard}
104 % if e.guard is not None:
105 #endif // ${e.guard}
113 % if e.guard is not None:
114 #ifdef ${e.guard}
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/intel/genxml/
gen_bits_header.py 61 #ifndef ${guard}
62 #define ${guard}
121 #endif /* ${guard} */""")
292 p.add_argument('--cpp-guard', type=str,
328 f.write(TEMPLATE.render(containers=containers, guard=pargs.cpp_guard))
  /xsrc/external/mit/MesaLib.old/dist/src/intel/genxml/
gen_bits_header.py 65 #ifndef ${guard}
66 #define ${guard}
132 #endif /* ${guard} */""", output_encoding='utf-8')
309 p.add_argument('--cpp-guard', type=str,
345 f.write(TEMPLATE.render(containers=containers, guard=pargs.cpp_guard))
  /xsrc/external/mit/MesaLib/dist/src/amd/registers/
makeregheader.py 132 def __init__(self, regdb, guard=None):
133 self.guard = guard
298 if self.guard:
299 print('#ifndef {self.guard}'.format(**locals()), file=filp)
300 print('#define {self.guard}\n'.format(**locals()), file=filp)
355 if self.guard:
356 print('\n#endif // {self.guard}'.format(**locals()), file=filp)
365 parser.add_argument('--guard', type=str, help='Name of the #include guard')
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/freedreno/registers/
gen_header.py 461 guard = str.replace(os.path.basename(xml_file), '.', '_').upper() + '_STRUCTS'
464 guard = str.replace(os.path.basename(xml_file), '.', '_').upper()
466 print("#ifndef %s\n#define %s\n" % (guard, guard))
479 print("\n#endif /* %s */" % guard)
  /xsrc/external/mit/MesaLib.old/dist/src/vulkan/util/
gen_enum_to_str.py 68 % if enum.guard:
69 #ifdef ${enum.guard}
93 % if enum.guard:
177 % if enum.guard:
178 #ifdef ${enum.guard}
181 % if enum.guard:
271 self.guard = None
308 self.guard = g
  /xsrc/external/mit/MesaLib.old/dist/src/intel/
Android.genxml.mk 53 $(intermediates)/genxml/genX_bits.h: PRIVATE_SCRIPT_FLAGS := --cpp-guard=GENX_BITS_H
  /xsrc/external/mit/MesaLib/dist/src/amd/compiler/tests/
helpers.cpp 311 std::lock_guard<std::mutex> guard(create_device_mutex);
  /xsrc/external/mit/pixman/dist/test/utils/
utils.c 524 uint8_t *guard = (uint8_t *)pixels + stride - page_size; local
529 if (mprotect (guard + i * stride, page_size, PROT_NONE) == -1)

Completed in 27 milliseconds

1 2