Searched refs:sptr (Results 1 - 21 of 21) sorted by relevance

/external/opencore/protocols/sdp/parser/src/
H A Dsessioninfoparser.cpp124 const char *sptr, *eptr; local
125 sptr = skip_whitespace(line_start_ptr + 2, line_end_ptr);
126 if (sptr >= line_end_ptr)
131 eptr = skip_to_whitespace(sptr, line_end_ptr);
132 if (eptr <= sptr)
138 memFrag.ptr = (void*)sptr;
139 memFrag.len = (eptr - sptr);
143 sptr = skip_whitespace(eptr, line_end_ptr);
146 while ((*sptr < '0') || (*sptr > '
264 const char *sptr, *eptr; local
303 const char *sptr, *eptr; local
336 const char *sptr, *eptr; local
369 const char *sptr, *eptr; local
471 const char *sptr, *eptr; local
527 const char *sptr, *eptr; local
687 const char *sptr; local
707 const char *sptr; local
727 const char *sptr; local
747 const char *sptr; local
770 const char *sptr, *eptr; local
846 const char *sptr, *eptr; local
1452 const char *sptr; local
1469 const char *sptr = line_start_ptr + sdp_int_key.length(); local
1570 const char *sptr = line_start_ptr + sdp_auth.length(); local
1579 const char *sptr = line_start_ptr + asset_info.length(); local
1590 const char *sptr = line_start_ptr + alt_gp.length(); local
1619 const char *sptr, *eptr; local
1645 const char *sptr, *eptr; local
[all...]
H A Dbasemediainfoparser.cpp109 const char *sptr, *eptr; local
114 sptr = skip_whitespace(line_start_ptr + 2, line_end_ptr);
115 if (sptr >= line_end_ptr)
121 eptr = skip_to_whitespace(sptr, line_end_ptr);
122 if (eptr <= sptr)
128 memFrag.ptr = (void*)sptr;
129 memFrag.len = (eptr - sptr);
134 sptr = skip_whitespace(eptr, line_end_ptr);
135 if (sptr >= line_end_ptr)
141 eptr = skip_to_whitespace(sptr, line_end_pt
534 const char *sptr; local
555 const char *sptr; local
569 const char *sptr; local
583 const char *sptr; local
598 const char *sptr; local
613 const char *sptr = line_start_ptr + adapt_supp.length(); local
628 const char *sptr = line_start_ptr + asset_info.length(); local
643 const char *sptr = line_start_ptr + srtp.length(); local
706 const char *sptr = line_start_ptr + rtcp_fb.length(); local
799 const char *sptr; local
821 const char *sptr; local
843 const char *sptr; local
865 const char *sptr; local
903 const char *sptr, *eptr; local
[all...]
H A Dsdp_parsing_utils.cpp146 const char *sptr = start_ptr; local
149 sptr = skip_whitespace_and_line_term(sptr, end_ptr);
154 if (!oscl_strncmp(sptr, "{", 1))
155 sptr = sptr + 1;
159 sptr = skip_whitespace_and_line_term(sptr, end_ptr);
160 if (sptr > eptr)
163 while (sptr < end_pt
489 parseAssetInfo(const char *sptr, const char *line_end_ptr, AssetInfoType &ainfo) argument
[all...]
H A Dm4vmediainfoparser.cpp178 const char *sptr; local
187 sptr = line_start_ptr + oscl_strlen("a=framerate:");
188 sptr = skip_whitespace(sptr, line_end_ptr);
189 if (sptr >= line_end_ptr)
195 if (!PV_atof(sptr, line_end_ptr - sptr, rate))
201 sptr = line_start_ptr + oscl_strlen("a=I_frame_interval:");
202 sptr = skip_whitespace(sptr, line_end_pt
382 const char *sptr = line_start_ptr + fmsize.length(); local
[all...]
H A Dsdpparser.cpp62 const char *sptr = start + len_of_rtpmap; local
66 eptr = skip_to_whitespace(sptr, end);
67 if (eptr < sptr)
72 if (PV_atoi(sptr, 'd', (eptr - sptr), rtpPayload) == false)
79 sptr = skip_whitespace(eptr, end);
80 if (sptr >= end)
86 for (eptr = sptr; eptr < end &&
95 encoding_name.ptr = (void *) sptr;
96 encoding_name.len = eptr - sptr;
105 const char *sptr, *eptr; local
386 const char *sptr = line_start_ptr + alt_def.length(); local
399 const char *sptr = line_start_ptr + alt_id.length(); local
419 const char *sptr = line_start_ptr + fmtp.length(); local
447 const char *sptr = line_start_ptr + framesize.length(); local
[all...]
H A Dh263mediainfoparser.cpp253 const char *sptr = line_start_ptr + fmsize.length(); local
254 const char *eptr = skip_to_whitespace(sptr, line_end_ptr);
256 if (sptr > eptr)
262 if (PV_atoi(sptr, 'd', (eptr - sptr), payloadNo))
288 sptr = eptr;
289 sptr = skip_whitespace(sptr , line_end_ptr);
293 if (!PV_atoi(sptr, 'd', eptr - sptr, widt
[all...]
H A Damrmediainfoparser.cpp96 const char *sptr; local
105 sptr = line_start_ptr + oscl_strlen("a=lang:");
106 sptr = skip_whitespace(sptr, line_end_ptr);
107 if (sptr >= line_end_ptr)
113 memFrag.ptr = (void*)sptr;
114 memFrag.len = (line_end_ptr - sptr);
121 sptr = line_start_ptr + oscl_strlen("a=maxptime:");
122 sptr = skip_whitespace(sptr, line_end_pt
[all...]
H A Devrcmediainfoparser.cpp88 const char *sptr; local
97 sptr = line_start_ptr + oscl_strlen("a=lang:");
98 sptr = skip_whitespace(sptr, line_end_ptr);
99 if (sptr >= line_end_ptr)
105 memFrag.ptr = (void*)sptr;
106 memFrag.len = (line_end_ptr - sptr);
H A Daacmediainfoparser.cpp176 const char *sptr; local
185 sptr = line_start_ptr + oscl_strlen("a=lang:");
186 sptr = skip_whitespace(sptr, line_end_ptr);
187 if (sptr >= line_end_ptr)
193 memFrag.ptr = (void*)sptr;
194 memFrag.len = (line_end_ptr - sptr);
/external/opencore/oscl/oscl/osclbase/src/
H A Doscl_uuid.h93 const char* sptr = NULL, *eptr = NULL; local
95 sptr = aUuidString;
96 ++sptr; //Increment over the starting parantheses '('
97 eptr = sptr;
106 sptr = sptr + 2;//Move over the 0x characters in the beginning of the hex value;
112 PV_atoi(sptr , 'x', eptr - sptr, data1);
118 PV_atoi(sptr , 'x', (eptr - sptr), tempdata
[all...]
/external/opencore/baselibs/gen_data_structures/src/
H A Drtsp_range_utils.cpp43 const char *sptr, *eptr; local
55 sptr = start;
59 for (eptr = sptr; eptr < endpoint &&
69 if (PV_atoi(sptr, 'd', eptr - sptr, tmp) == false)
85 const char *sptr; local
87 sptr = start_ptr;
92 sptr = parse_range_integer(sptr, end_ptr,
95 if (!sptr || *spt
198 const char *sptr, *eptr; local
353 const char *sptr, *eptr; local
485 const char* sptr, *eptr; local
[all...]
/external/opencore/protocols/sdp/parser/include/
H A Dsdp_parsing_utils.h30 bool parseAssetInfo(const char *sptr, const char *line_end_ptr,
/external/jpeg/
H A Djmemmgr.c589 jvirt_sarray_ptr sptr; local
598 for (sptr = mem->virt_sarray_list; sptr != NULL; sptr = sptr->next) {
599 if (sptr->mem_buffer == NULL) { /* if not realized yet */
600 space_per_minheight += (long) sptr->maxaccess *
601 (long) sptr->samplesperrow * SIZEOF(JSAMPLE);
602 maximum_space += (long) sptr->rows_in_array *
603 (long) sptr
947 jvirt_sarray_ptr sptr; local
[all...]
/external/qemu/distrib/libpng-1.2.19/
H A Dpnggccrd.c2251 png_bytep sptr, dp; local
2258 /* point sptr at the last pixel in the pre-expanded row: */
2259 sptr = row + (width - 1) * pixel_bytes;
2290 // sptr points at last pixel in pre-expanded row
2325 "1" (sptr), // esi/rsi
2342 sptr -= width_mmx*BPP3;
2349 png_memcpy(v, sptr, BPP3);
2355 sptr -= BPP3;
2389 "1" (sptr), // esi/rsi
2439 "1" (sptr), // es
[all...]
H A Dpngvcrd.c976 png_bytep sptr; local
985 sptr = png_ptr->row_buf + 1 + offset_table[png_ptr->pass]*
993 png_memcpy(dp, sptr, pixel_bytes);
994 sptr += incr1;
1211 png_bytep sptr, dp; local
1218 sptr = row + (width - 1) * pixel_bytes;
1244 mov esi, sptr
1272 sptr -= width_mmx*3;
1279 png_memcpy(v, sptr, 3);
1285 sptr
[all...]
H A Dpngrutil.c2985 png_bytep sptr, dp; local
2992 /* point sptr at the last pixel in the pre-expanded row: */
2993 sptr = row + (width - 1) * pixel_bytes;
3011 *dp-- = *sptr;
3013 --sptr;
3022 png_memcpy(v, sptr, 3);
3028 sptr -= 3;
3037 png_memcpy(v, sptr, 2);
3043 sptr -= 2;
3052 png_memcpy(v, sptr,
[all...]
/external/webkit/WebKitTools/android/flex-2.5.4a/
H A Dmisc.c558 int sptr = 1; local
560 while ( isascii( array[sptr] ) &&
561 isdigit( array[sptr] ) )
566 ++sptr;
568 c = array[sptr];
569 array[sptr] = '\0';
573 array[sptr] = c;
580 int sptr = 2; local
582 while ( isascii( array[sptr] ) &&
583 isxdigit( (char) array[sptr] ) )
[all...]
/external/openssl/apps/
H A Denc.c488 unsigned char *sptr; local
489 if(nosalt) sptr = NULL;
521 sptr = salt;
524 EVP_BytesToKey(cipher,dgst,sptr,
/external/libxml2/
H A Dchvalid.c170 const xmlChSRange *sptr; local
179 sptr = rptr->shortRange;
182 if ((unsigned short) val < sptr[mid].low) {
185 if ((unsigned short) val > sptr[mid].high) {
H A Dxmlunicode.c948 xmlUnicodeRange *sptr; local
954 sptr = tptr->table;
957 if ((cmp=strcmp(tname, sptr[mid].rangename)) == 0)
958 return (sptr[mid].func);
/external/opencore/protocols/rtsp_parcom/src/
H A Drtsp_par_com_incoming_message.cpp791 char *sptr;//, *eptr; local
793 sptr = (char*)supportedString;
795 while ((sptr < end) && (numOfSupportedEntries < RTSP_MAX_NUMBER_OF_SUPPORTED_ENTRIES))
797 char * separator = sptr;
816 char * namePtr = sptr;
842 sptr = separator + 1;

Completed in 319 milliseconds