Searched defs:p_start (Results 1 - 12 of 12) sorted by relevance

/external/ply/ply/test/
H A Dyacc_nested.py21 def p_start(t): function
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_split_prim.h18 unsigned p_start; member in struct:util_split_prim
38 s->p_start = start;
58 if ((s->p_end - s->p_start) + s->close_first <= max_verts) {
59 s->emit(s->priv, s->p_start, s->p_end - s->p_start);
74 s->emit(s->priv, s->p_start, max_verts);
76 s->emit(s->priv, s->p_start + max_verts, 1);
77 s->p_start += max_verts;
109 s->emit (s->priv, s->p_start, max_verts);
110 s->p_start
[all...]
/external/webrtc/webrtc/common_audio/signal_processing/
H A Dmin_max_operations_neon.c23 const int16_t* p_start = vector; local
31 while (p_start < p_end) {
32 v = vld1q_s16(p_start);
37 p_start += 8;
52 while (p_start < p_end) {
53 absolute = abs((int)(*p_start));
58 p_start++;
81 const int32_t* p_start = vector; local
87 int32x4_t in32x4_0 = vld1q_s32(p_start);
88 p_start
133 const int16_t* p_start = vector; local
171 const int32_t* p_start = vector; local
213 const int16_t* p_start = vector; local
251 const int32_t* p_start = vector; local
[all...]
/external/protobuf/src/google/protobuf/util/internal/
H A Djson_stream_parser.cc723 const char* p_start = p_.data(); local
725 const char* begin = std::max(p_start - kContextLength, json_start);
727 std::min(p_start + kContextLength, json_start + json_.size());
729 string location(p_start - begin, ' ');
/external/kernel-headers/original/uapi/linux/
H A Dnilfs2_api.h172 * @p_start: start checkpoint number (inclusive)
176 __u64 p_start; member in struct:nilfs_period
/external/freetype/src/sfnt/
H A Dttcmap.c975 FT_Byte* p_start = starts; local
984 start = TT_NEXT_USHORT( p_start );
/external/python/cpython2/Parser/
H A Dtokenizer.c1216 tok_get(register struct tok_state *tok, char **p_start, char **p_end) argument
1221 *p_start = *p_end = NULL;
1398 *p_start = tok->start;
1408 *p_start = tok->start;
1422 *p_start = tok->start;
1538 *p_start = tok->start;
1555 *p_start = tok->start;
1612 *p_start = tok->start;
1651 *p_start = tok->start;
1673 *p_start
1679 PyTokenizer_Get(struct tok_state *tok, char **p_start, char **p_end) argument
[all...]
/external/python/cpython3/Parser/
H A Dtokenizer.c1363 tok_get(struct tok_state *tok, char **p_start, char **p_end) argument
1368 *p_start = *p_end = NULL;
1547 *p_start = tok->start;
1596 *p_start = tok->start;
1615 *p_start = tok->start;
1627 *p_start = tok->start;
1766 *p_start = tok->start;
1783 *p_start = tok->start;
1839 *p_start = tok->start;
1869 *p_start
1897 PyTokenizer_Get(struct tok_state *tok, char **p_start, char **p_end) argument
1922 char *p_start =NULL , *p_end =NULL , *encoding = NULL; local
[all...]
/external/python/cpython3/Python/
H A Dformatter_unicode.c594 PyObject *prefix, Py_ssize_t p_start,
615 prefix, p_start,
592 fill_number(_PyUnicodeWriter *writer, const NumberFieldWidths *spec, PyObject *digits, Py_ssize_t d_start, Py_ssize_t d_end, PyObject *prefix, Py_ssize_t p_start, Py_UCS4 fill_char, LocaleInfo *locale, int toupper) argument
/external/webrtc/webrtc/modules/audio_processing/ns/
H A Dnsx_core_neon.c507 int16_t * p_start = inst->synthesisBuffer; local
510 while (p_start < p_end) {
511 int16x8_t frame_0 = vld1q_s16(p_start);
513 p_start += 8;
528 p_start = inst->synthesisBuffer + inst->anaLen - inst->blockLen10ms;
529 p_end = p_start + inst->blockLen10ms;
531 for (;p_start < p_end; p_start += 8) {
532 vst1q_s16(p_start, zero);
/external/wpa_supplicant_8/hostapd/
H A Dctrl_iface.c3702 char *p_start = cmd, *p_end; local
3707 p_end = os_strchr(p_start, ' ');
3715 src_hapd = hostapd_interfaces_get_hapd(interfaces, p_start);
3718 p_start);
3722 p_start = p_end + 1;
3723 p_end = os_strchr(p_start, ' ');
3731 dst_hapd = hostapd_interfaces_get_hapd(interfaces, p_start);
3734 p_start);
3738 p_start = p_end + 1;
3739 return hostapd_ctrl_iface_dup_param(src_hapd, dst_hapd, p_start);
[all...]
/external/opencv/cvaux/src/
H A Dcvepilines.cpp764 void icvGetCoefForPiece( CvPoint2D64d p_start,CvPoint2D64d p_end, argument
771 det = p_start.x*p_end.y+p_end.x+p_start.y-p_end.y-p_start.y*p_end.x-p_start.x;
778 detA = p_start.y - p_end.y;
779 detB = p_end.x - p_start.x;
780 detC = p_start.x*p_end.y - p_end.x*p_start.y;
1053 void icvGetCrossPieceDirect( CvPoint2D64d p_start,CvPoint2D64 argument
[all...]

Completed in 447 milliseconds