Home
last modified time | relevance | path

Searched defs:encode_args (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/amd/vulkan/bvh/
Dbuild_interface.h89 struct encode_args { struct
90 VOID_REF intermediate_bvh;
91 VOID_REF output_bvh;
93 uint32_t output_bvh_offset;
94 uint32_t leaf_node_count;
95 uint32_t geometry_type;
/external/python/cpython2/Lib/
Dmimify.py461 encode_args = (sys.stdin, sys.stdout) variable
463 encode_args = (args[0], sys.stdout) variable
465 encode_args = (args[0], args[1]) variable
467 encode_args = encode_args + (decode_base64,) variable
/external/pigweed/pw_tokenizer/py/pw_tokenizer/
Dencode.py63 def encode_args(*args: int | float | bytes | str) -> bytes: function