• Home
  • Raw
  • Download

Lines Matching refs:p_out

178 UINT8 *sdpu_build_attrib_seq (UINT8 *p_out, UINT16 *p_attr, UINT16 num_attrs)  in sdpu_build_attrib_seq()  argument
191 UINT8_TO_BE_STREAM (p_out, (DATA_ELE_SEQ_DESC_TYPE << 3) | SIZE_IN_NEXT_WORD); in sdpu_build_attrib_seq()
192 UINT16_TO_BE_STREAM (p_out, xx); in sdpu_build_attrib_seq()
196 UINT8_TO_BE_STREAM (p_out, (DATA_ELE_SEQ_DESC_TYPE << 3) | SIZE_IN_NEXT_BYTE); in sdpu_build_attrib_seq()
197 UINT8_TO_BE_STREAM (p_out, xx); in sdpu_build_attrib_seq()
203 UINT8_TO_BE_STREAM (p_out, (UINT_DESC_TYPE << 3) | SIZE_FOUR_BYTES); in sdpu_build_attrib_seq()
204 UINT16_TO_BE_STREAM (p_out, 0); in sdpu_build_attrib_seq()
205 UINT16_TO_BE_STREAM (p_out, 0xFFFF); in sdpu_build_attrib_seq()
212 UINT8_TO_BE_STREAM (p_out, (UINT_DESC_TYPE << 3) | SIZE_TWO_BYTES); in sdpu_build_attrib_seq()
213 UINT16_TO_BE_STREAM (p_out, *p_attr); in sdpu_build_attrib_seq()
217 return (p_out); in sdpu_build_attrib_seq()
232 UINT8 *sdpu_build_attrib_entry (UINT8 *p_out, tSDP_ATTRIBUTE *p_attr) in sdpu_build_attrib_entry() argument
235 UINT8_TO_BE_STREAM (p_out, (UINT_DESC_TYPE << 3) | SIZE_TWO_BYTES); in sdpu_build_attrib_entry()
236 UINT16_TO_BE_STREAM (p_out, p_attr->id); in sdpu_build_attrib_entry()
249 UINT8_TO_BE_STREAM (p_out, (p_attr->type << 3) | SIZE_IN_NEXT_LONG); in sdpu_build_attrib_entry()
250 UINT32_TO_BE_STREAM (p_out, p_attr->len); in sdpu_build_attrib_entry()
258 UINT8_TO_BE_STREAM (p_out, (p_attr->type << 3) | SIZE_IN_NEXT_WORD); in sdpu_build_attrib_entry()
259 UINT16_TO_BE_STREAM (p_out, p_attr->len); in sdpu_build_attrib_entry()
265 UINT8_TO_BE_STREAM (p_out, (p_attr->type << 3) | SIZE_IN_NEXT_BYTE); in sdpu_build_attrib_entry()
266 UINT8_TO_BE_STREAM (p_out, p_attr->len); in sdpu_build_attrib_entry()
269 ARRAY_TO_BE_STREAM (p_out, p_attr->value_ptr, (int)p_attr->len); in sdpu_build_attrib_entry()
271 return (p_out); in sdpu_build_attrib_entry()
278 UINT8_TO_BE_STREAM (p_out, (p_attr->type << 3) | SIZE_ONE_BYTE); in sdpu_build_attrib_entry()
281 UINT8_TO_BE_STREAM (p_out, (p_attr->type << 3) | SIZE_TWO_BYTES); in sdpu_build_attrib_entry()
284 UINT8_TO_BE_STREAM (p_out, (p_attr->type << 3) | SIZE_FOUR_BYTES); in sdpu_build_attrib_entry()
287 UINT8_TO_BE_STREAM (p_out, (p_attr->type << 3) | SIZE_EIGHT_BYTES); in sdpu_build_attrib_entry()
290 UINT8_TO_BE_STREAM (p_out, (p_attr->type << 3) | SIZE_SIXTEEN_BYTES); in sdpu_build_attrib_entry()
293 UINT8_TO_BE_STREAM (p_out, (p_attr->type << 3) | SIZE_IN_NEXT_BYTE); in sdpu_build_attrib_entry()
294 UINT8_TO_BE_STREAM (p_out, p_attr->len); in sdpu_build_attrib_entry()
298 ARRAY_TO_BE_STREAM (p_out, p_attr->value_ptr, (int)p_attr->len); in sdpu_build_attrib_entry()
300 return (p_out); in sdpu_build_attrib_entry()
1000 UINT8 *sdpu_build_partial_attrib_entry (UINT8 *p_out, tSDP_ATTRIBUTE *p_attr, UINT16 len, UINT16 *o… in sdpu_build_partial_attrib_entry() argument
1019 memcpy(p_out, &p_attr_buff[*offset], len_to_copy); in sdpu_build_partial_attrib_entry()
1021 p_out = &p_out[len_to_copy]; in sdpu_build_partial_attrib_entry()
1025 return p_out; in sdpu_build_partial_attrib_entry()