Home
last modified time | relevance | path

Searched refs:p_out (Results 1 – 10 of 10) sorted by relevance

/external/libldac/src/
Dsetpcm_ldac.c24 SCALAR *p_out, in byte_data_to_scalar_s16_ldac() argument
32 *p_out++ = (SCALAR)*p_s++; in byte_data_to_scalar_s16_ldac()
43 SCALAR *p_out, in byte_data_to_scalar_s24_ldac() argument
61 *p_out++ = scale * (SCALAR)(val << 8); /* Sign Extension */ in byte_data_to_scalar_s24_ldac()
72 SCALAR *p_out, in byte_data_to_scalar_s32_ldac() argument
81 *p_out++ = scale * (SCALAR)*p_l++; in byte_data_to_scalar_s32_ldac()
92 SCALAR *p_out, in byte_data_to_scalar_f32_ldac() argument
101 *p_out++ = scale * (SCALAR)*p_f++; in byte_data_to_scalar_f32_ldac()
Dsetpcm_fixp_ldac.c24 INT32 *p_out, in byte_data_to_int_s16_ldac() argument
32 *p_out++ = lsft_ldac((INT32)*p_s++, LDAC_Q_SETPCM); in byte_data_to_int_s16_ldac()
43 INT32 *p_out, in byte_data_to_int_s24_ldac() argument
60 *p_out++ = (INT32)((val << 8) >> 1); /* Sign Extension */ in byte_data_to_int_s24_ldac()
71 INT32 *p_out, in byte_data_to_int_s32_ldac() argument
79 *p_out++ = rsft_ldac((INT32)*p_l++, 16-LDAC_Q_SETPCM); in byte_data_to_int_s32_ldac()
/external/selinux/libselinux/src/
Dmapping.c62 struct selinux_mapping *p_out = current_mapping + j; in selinux_set_mapping() local
64 p_out->value = string_to_security_class(p_in->name); in selinux_set_mapping()
65 if (!p_out->value) in selinux_set_mapping()
75 p_out->perms[k] = string_to_av_perm(p_out->value, in selinux_set_mapping()
77 if (!p_out->perms[k]) in selinux_set_mapping()
81 p_out->num_perms = k; in selinux_set_mapping()
/external/syslinux/core/lwip/src/core/
Ddhcp.c313 pbuf_realloc(dhcp->p_out, sizeof(struct dhcp_msg) - DHCP_OPTIONS_LEN + dhcp->options_out_len); in dhcp_select()
316 udp_sendto_if(dhcp->pcb, dhcp->p_out, IP_ADDR_BROADCAST, DHCP_SERVER_PORT, netif); in dhcp_select()
666 LWIP_ASSERT("pbuf p_out wasn't freed", dhcp->p_out == NULL); in dhcp_start()
741 pbuf_realloc(dhcp.p_out, sizeof(struct dhcp_msg) - DHCP_OPTIONS_LEN + dhcp.options_out_len); in dhcp_inform()
744 udp_sendto_if(pcb, dhcp.p_out, IP_ADDR_BROADCAST, DHCP_SERVER_PORT, netif); in dhcp_inform()
843 pbuf_realloc(dhcp->p_out, sizeof(struct dhcp_msg) - DHCP_OPTIONS_LEN + dhcp->options_out_len); in dhcp_decline()
846 udp_sendto_if(dhcp->pcb, dhcp->p_out, IP_ADDR_BROADCAST, DHCP_SERVER_PORT, netif); in dhcp_decline()
893 pbuf_realloc(dhcp->p_out, sizeof(struct dhcp_msg) - DHCP_OPTIONS_LEN + dhcp->options_out_len); in dhcp_discover()
896 udp_sendto_if(dhcp->pcb, dhcp->p_out, IP_ADDR_BROADCAST, DHCP_SERVER_PORT, netif); in dhcp_discover()
1053 pbuf_realloc(dhcp->p_out, sizeof(struct dhcp_msg) - DHCP_OPTIONS_LEN + dhcp->options_out_len); in dhcp_renew()
[all …]
/external/libmojo/third_party/catapult/devil/devil/android/tools/
Dadb_run_shell_cmd.py37 p_out = (device_utils.DeviceUtils.parallel(devices).RunShellCommand(
42 for device, output in zip(devices, p_out):
/external/chromium-trace/catapult/devil/devil/android/tools/
Dadb_run_shell_cmd.py43 p_out = (device_utils.DeviceUtils.parallel(devices).RunShellCommand(
48 for device, output in zip(devices, p_out):
/external/vixl/tools/
Dthreaded_tests.py83 p_out, p_err = p.communicate()
106 printer.Print(p_out, has_lock = True)
/external/vulkan-validation-layers/
Dvk_helper.py767 p_out = ""
838 p_out += p_out1
840 p_out += '"'
842 sh_funcs[-1] = '%s%s%s' % (sh_funcs[-1], p_out, p_args)
1180 …(p_out, p_arg) = self._get_struct_print_formatted(self.struct_dict[s][member], pre_var_name="&m_du…
1190 …return (' %sprintf("%%*s %s", m_indent, ""%s);' % (extra_indent, p_out, p_arg), struct_array)
1992 p_out = ""
2055 p_out += p_out1
2057 p_out += '</TABLE>>\\n];\\n\\n"'
2059 gv_funcs.append(p_out)
[all …]
/external/syslinux/core/lwip/src/include/lwip/
Ddhcp.h46 struct pbuf *p_out; /* pbuf of outcoming msg */ member
/external/autotest/site_utils/
Dtest_runner_utils.py403 p_out, _ = p.communicate()
404 for line in p_out.splitlines():