Lines Matching refs:binary
28 * Helper functions for serializing a binary program.
45 * Mesa supports one binary format, but it must differentiate between formats
61 * the binary only works with the same Mesa version.
68 * Returns the header size needed for a binary
78 const void *sha1, void *binary, unsigned binary_size,
81 struct program_binary_header *hdr = binary;
153 * Returns the payload within the binary.
155 * If NULL is returned, then the binary not supported. If non-NULL is
156 * returned, it will be a pointer contained within the specified `binary`
159 * This can be used to access the payload of `binary` during the
164 const void *binary, unsigned length)
166 const struct program_binary_header *hdr = binary;
169 return (const uint8_t*)binary + sizeof(*hdr);
236 GLenum *binary_format, GLvoid *binary)
255 binary, buf_size, binary_format);
273 GLenum binary_format, const GLvoid *binary,
282 binary, length);