Home
last modified time | relevance | path

Searched refs:disp (Results 1 – 11 of 11) sorted by relevance

/php-src/ext/com_dotnet/
H A Dcom_wrapper.c56 disp_destructor(disp); in dispatch_dtor()
132 if (disp->res) in disp_release()
532 if (disp == NULL) in disp_constructor()
539 disp->refcount = 1; in disp_constructor()
551 return disp; in disp_constructor()
563 disp->res = NULL; in disp_destructor()
565 if (disp->refcount > 0) in disp_destructor()
575 CoTaskMemFree(disp); in disp_destructor()
590 memcpy(&disp->sinkid, sinkid, sizeof(disp->sinkid)); in php_com_wrapper_export_as_sink()
611 return (IDispatch*)disp; in php_com_wrapper_export_as_sink()
[all …]
H A Dcom_misc.c45 PHP_COM_DOTNET_API void php_com_wrap_dispatch(zval *z, IDispatch *disp, in php_com_wrap_dispatch() argument
58 V_DISPATCH(&obj->v) = disp; in php_com_wrap_dispatch()
H A Dcom_typeinfo.c95 IDispatch *disp = NULL; in php_com_load_typelib() local
99 …if (SUCCEEDED(hr = CoCreateInstance(&clsid, NULL, CLSCTX_SERVER, &IID_IDispatch, (LPVOID*)&disp)) … in php_com_load_typelib()
100 SUCCEEDED(hr = IDispatch_GetTypeInfo(disp, 0, LANG_NEUTRAL, &info))) { in php_com_load_typelib()
107 if (disp) { in php_com_load_typelib()
108 IDispatch_Release(disp); in php_com_load_typelib()
H A Dcom_persist.c552 IDispatch *disp = NULL; in CPH_METHOD() local
555 res = OleLoadFromStream(stm, &IID_IDispatch, &disp); in CPH_METHOD()
558 php_com_wrap_dispatch(return_value, disp, COMG(code_page)); in CPH_METHOD()
H A Dphp_com_dotnet_internal.h128 PHP_COM_DOTNET_API void php_com_wrap_dispatch(zval *z, IDispatch *disp,
H A Dcom_variant.c247 IDispatch *disp; in php_com_zval_from_variant() local
249 if (SUCCEEDED(IUnknown_QueryInterface(V_UNKNOWN(v), &IID_IDispatch, &disp))) { in php_com_zval_from_variant()
250 php_com_wrap_dispatch(z, disp, codepage); in php_com_zval_from_variant()
251 IDispatch_Release(disp); in php_com_zval_from_variant()
/php-src/ext/opcache/jit/ir/dynasm/
H A Ddasm_x86.lua598 local disp = t.disp
599 local tdisp = type(disp)
631 waction("REL_A", disp[1])
636 wputdarg(disp)
645 elseif disp >= -128 and disp <= 127 then m = 1
737 if disp then return disp end
794 t.disp = toint(br)
795 if t.disp then
807 t.disp = dispexpr("+"..br)
827 t.disp = dispexpr(tailsc)
[all …]
H A Ddasm_ppc.lua1580 local function parse_disp(disp)
1581 local imm, reg = match(disp, "^(.*)%(([%w_:]+)%)$")
1587 local reg, tailr = match(disp, "^([%w_:]+)%s*(.*)$")
1596 werror("bad displacement `"..disp.."'")
1599 local function parse_u5disp(disp, scale)
1600 local imm, reg = match(disp, "^(.*)%(([%w_:]+)%)$")
1606 local reg, tailr = match(disp, "^([%w_:]+)%s*(.*)$")
1615 werror("bad displacement `"..disp.."'")
H A Ddasm_mips.lua882 local function parse_disp(disp)
883 local imm, reg = match(disp, "^(.*)%(([%w_:]+)%)$")
894 local reg, tailr = match(disp, "^([%w_:]+)%s*(.*)$")
902 werror("bad displacement `"..disp.."'")
/php-src/ext/gd/libgd/
H A Dgd_gif_out.c512 register code_int disp; local
566 disp = hsize_reg - i; /* secondary hash (after G. Knott) */
568 disp = 1;
570 if ( (i -= disp) < 0 )
/php-src/ext/opcache/jit/ir/
H A Dir_disasm.c238 return (uint32_t)insn->detail->x86.operands[i].mem.disp; in ir_disasm_rodata_reference()
244 && insn->detail->x86.operands[i].mem.disp) { in ir_disasm_rodata_reference()
245 return (uint32_t)insn->detail->x86.operands[i].mem.disp; in ir_disasm_rodata_reference()
265 return insn->detail->x86.operands[i].mem.disp + insn->address + insn->size; in ir_disasm_rodata_reference()

Completed in 61 milliseconds