Home | History | Annotate | Download | only in vulkan

Lines Matching refs:binary

23  * \brief Program binary registry.
68 // Program Binary Index
73 // just storing each compiled binary without de-duplication would be incredibly
76 // To locate binary that corresponds given ProgramIdentifier, a program binary
78 // binary, it must be fast to load (to reduce statup cost), and fast to access.
80 // Simple trie is used to store binary indices. It is laid out as an array of
92 // If word contains one or more trailing 0 bytes, index denotes the binary index
98 deUint32 index; //!< Binary index if word ends with 0 bytes, or index of first child node otherwise.
210 deUint32* find (const ProgramBinary* binary) const;
211 void insert (const ProgramBinary* binary, deUint32 index);
227 void addProgram (const ProgramIdentifier& id, const ProgramBinary& binary);
234 deUint32* findBinary (const ProgramBinary& binary) const;
236 void addBinary (deUint32 index, const ProgramBinary& binary);
240 ProgramBinary* binary;
244 : binary (binary_)
249 : binary (DE_NULL)