OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:byte_code
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/v8/src/
serialize.h
252
static int RepeatsForCode(int
byte_code
) {
253
ASSERT(
byte_code
>= kConstantRepeat &&
byte_code
<= 0x7f);
254
return
byte_code
- 0x72;
259
static int RootArrayConstantFromByteCode(int
byte_code
) {
260
return
byte_code
& 0x1f;
serialize.cc
[
all
...]
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3dx9shader.h
269
UINT WINAPI D3DXGetShaderSize(const DWORD *
byte_code
);
270
DWORD WINAPI D3DXGetShaderVersion(const DWORD *
byte_code
);
272
HRESULT WINAPI D3DXFindShaderComment(CONST DWORD*
byte_code
, DWORD fourcc, LPCVOID* data, UINT* size);
273
HRESULT WINAPI D3DXGetShaderSamplers(CONST DWORD *
byte_code
, LPCSTR *samplers, UINT *count);
325
HRESULT WINAPI D3DXGetShaderConstantTableEx(const DWORD *
byte_code
, DWORD flags, ID3DXConstantTable **constant_table);
327
HRESULT WINAPI D3DXGetShaderConstantTable(const DWORD *
byte_code
, ID3DXConstantTable **constant_table);
Completed in 52 milliseconds