HomeSort by relevance Sort by last modified time
    Searched refs:p_s (Results 1 - 10 of 10) sorted by null

  /system/bt/bta/include/
utl.h 70 extern int16_t utl_str2int(const char* p_s);
77 * String p_s must be uppercase. String p_t is converted to
78 * uppercase if lowercase. If p_s ends first, the substring
85 extern int utl_strucmp(const char* p_s, const char* p_t);
99 extern uint8_t utl_itoa(uint16_t i, char* p_s);
138 extern bool utl_isintstr(const char* p_s);
163 extern bool utl_isdialstr(const char* p_s);
  /system/bt/bta/sys/
utl.cc 43 int16_t utl_str2int(const char* p_s) {
46 for (; *p_s == ' ' && *p_s != 0; p_s++)
49 if (*p_s == 0) return -1;
52 if ((*p_s < '0') || (*p_s > '9')) return -1;
54 val += (int32_t)(*p_s++ - '0');
58 if (*p_s == 0) {
71 * String p_s must be uppercase. String p_t is converted t
    [all...]
  /external/libldac/src/
mdct_ldac.c 32 const SCALAR *p_w, *p_c, *p_s; local
41 p_s = gaa_wsin_ldac[i];
62 cs = p_s[coef++];
84 cs = p_s[coef++];
setpcm_fixp_ldac.c 28 short *p_s; local
30 p_s = (short *)p_in;
32 *p_out++ = lsft_ldac((INT32)*p_s++, LDAC_Q_SETPCM);
mdct_fixp_ldac.c 33 const INT32 *p_w, *p_c, *p_s; local
40 p_s = gaa_wsin_ldac[i];
85 g1 = mul_rsftrnd_ldac(a_work[index1+1], p_s[coef], LDAC_Q_MDCT_SIN+1);
88 g0 = mul_rsftrnd_ldac(a_work[index1], p_s[coef], LDAC_Q_MDCT_SIN+1);
115 g1 = mul_rsftrnd_ldac(a_work[index0+1], p_s[coef], LDAC_Q_MDCT_SIN+shift);
118 g0 = mul_rsftrnd_ldac(a_work[index0], p_s[coef], LDAC_Q_MDCT_SIN+shift);
setpcm_ldac.c 28 short *p_s; local
30 p_s = (short *)p_in;
32 *p_out++ = (SCALAR)*p_s++;
  /system/bt/bta/ag/
bta_ag_cmd.cc 379 static bool bta_ag_parse_cmer(char* p_s, bool* p_enabled) {
386 for (p = p_s; *p != ',' && *p != 0; p++)
391 n[i] = utl_str2int(p_s);
392 p_s = p + 1;
393 if (p_s == nullptr) {
423 static uint8_t bta_ag_parse_chld(UNUSED_ATTR tBTA_AG_SCB* p_scb, char* p_s) {
426 if (!isdigit(p_s[0])) {
430 if (p_s[1] != 0) {
432 int16_t idx = utl_str2int(&p_s[1]);
452 static tBTA_AG_PEER_CODEC bta_ag_parse_bac(tBTA_AG_SCB* p_scb, char* p_s) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/
edk2module.c 2914 FILE *p_s[3]; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
posixmodule.c 4504 FILE *p_s[3]; local
    [all...]
  /external/python/cpython2/Modules/
posixmodule.c 4760 FILE *p_s[3]; local
    [all...]

Completed in 369 milliseconds