Lines Matching refs:byte_code
56 info.byte_code = pFunction;
75 This->byte_code.version = info.version;
77 This->byte_code.tokens = mem_dup(pFunction, info.byte_size);
78 if (!This->byte_code.tokens)
80 This->byte_code.size = info.byte_size;
145 FREE((void *)This->byte_code.tokens); /* const_cast */
160 *pSizeOfData = This->byte_code.size;
163 user_assert(*pSizeOfData >= This->byte_code.size, D3DERR_INVALIDCALL);
165 memcpy(pData, This->byte_code.tokens, This->byte_code.size);
197 info.byte_code = This->byte_code.tokens;
200 if (unlikely(This->byte_code.version < 0x20)) {
201 if (This->byte_code.version < 0x14) {