Lines Matching refs:l_s

23     nsXPTCVariant *l_s = s;  in invoke_copy_to_stack()  local
33 for(uint32_t i = 0; i < l_paramCount; i++, l_d++, l_s++) in invoke_copy_to_stack()
35 if(l_s->IsPtrData()) in invoke_copy_to_stack()
37 *((void**)l_d) = l_s->ptr; in invoke_copy_to_stack()
40 switch(l_s->type) in invoke_copy_to_stack()
42 case nsXPTType::T_I8 : *((int32_t*) l_d) = l_s->val.i8; break; in invoke_copy_to_stack()
43 case nsXPTType::T_I16 : *((int32_t*) l_d) = l_s->val.i16; break; in invoke_copy_to_stack()
44 case nsXPTType::T_I32 : *((int32_t*) l_d) = l_s->val.i32; break; in invoke_copy_to_stack()
47 *((uint32_t*) l_d++) = ((DU *)l_s)->hi; in invoke_copy_to_stack()
48 *((uint32_t*) l_d) = ((DU *)l_s)->lo; in invoke_copy_to_stack()
51 *((uint32_t*) l_d++) = ((DU *)l_s)->hi; in invoke_copy_to_stack()
52 *((uint32_t*) l_d) = ((DU *)l_s)->lo; in invoke_copy_to_stack()
54 l_fprData[fpCount++] = l_s->val.d; in invoke_copy_to_stack()
56 case nsXPTType::T_U8 : *((uint32_t*) l_d) = l_s->val.u8; break; in invoke_copy_to_stack()
57 case nsXPTType::T_U16 : *((uint32_t*) l_d) = l_s->val.u16; break; in invoke_copy_to_stack()
58 case nsXPTType::T_U32 : *((uint32_t*) l_d) = l_s->val.u32; break; in invoke_copy_to_stack()
60 *((float*) l_d) = l_s->val.f; in invoke_copy_to_stack()
62 l_fprData[fpCount++] = l_s->val.f; in invoke_copy_to_stack()
64 case nsXPTType::T_BOOL : *((uint32_t*) l_d) = l_s->val.b; break; in invoke_copy_to_stack()
65 case nsXPTType::T_CHAR : *((uint32_t*) l_d) = l_s->val.c; break; in invoke_copy_to_stack()
66 case nsXPTType::T_WCHAR : *((int32_t*) l_d) = l_s->val.wc; break; in invoke_copy_to_stack()
69 *((void**)l_d) = l_s->val.p; in invoke_copy_to_stack()