Lines Matching refs:pointer

329   * pointer to position of terminating zero in dest. The function is
722 + int pointer = 0;
729 …har *q = &p[pointer]; /*[modified] previously p++ above (for(;;p++)) now, it's pointer wich is i…
735 + q = &(p[pointer+decay]); /*[modified] the old copying method do not manage mult…
762 + pointer = nextcharstart(p,pointer); /*[modified] p[pointer] must point on the next start of sy…
1274 + int pointer = position;
1276 + if(str[pointer] & ESCAPE_MASK){ /*if the first bit of the current char is 1*/
1278 + /*then str[pointer] is an escape character*/
1280 + char escape_char = ((str[pointer] & WEIGHT_MASK) << 1); /*and we use it to count (by bit trans…
1282 + while(escape_char & ESCAPE_MASK && str[pointer]){/*every step, we move the byte of 1 bit left,…
1284 + ++pointer;
1287 + if(str[pointer]){ /*finaly, if we are not on the \0 character, we jump to the next character…
1288 + ++pointer;
1290 + return pointer;
1296 + int pointer = 0;
1297 + if(str[pointer] & ESCAPE_MASK){ /*if the first bit of the current char is 1*/
1299 + /*then str[pointer] is an escape character*/
1301 + char escape_char = ((str[pointer] & WEIGHT_MASK) << 1); /*and we use it to count following…
1303 + while(escape_char & ESCAPE_MASK && str[pointer]){ /*every step, we move the byte of 1 bi…
1304 + dest[pointer] = str[pointer];
1306 + ++pointer;
1309 + if(str[pointer]){
1310 + dest[pointer] = str[pointer];
1311 + ++pointer;
1314 + return pointer;
1322 + int pointer = 0;
1325 + if(key[pointer] & ESCAPE_MASK){ /*if the first bit of the current char is 1*/
1327 + /*then key[pointer] is an escap character*/
1329 + char escape_char = ((key[pointer] & WEIGHT_MASK) << 1); /*and we use it to count (…
1331 + while(escape_char & ESCAPE_MASK && key[pointer] == lex[pointer] ){
1333 + ++pointer;
1337 + if ( key[pointer] != lex[pointer] ) {
1341 + ++pointer;
1343 + if ( lex[pointer] != '\0' ) {
1356 + int pointer = 0;
1357 + while(str[pointer]) {
1358 + pointer = nextcharstart(str, pointer);