Lines Matching refs:pointer

362   * pointer to position of terminating zero in dest. The function is
755 + int pointer = 0;
762 …har *q = &p[pointer]; /*[modified] previously p++ above (for(;;p++)) now, it's pointer which is …
768 + q = &(p[pointer+decay]); /*[modified] the old copying method do not manage mult…
795 + pointer = nextcharstart(p,pointer); /*[modified] p[pointer] must point on the next start of sy…
1307 + int pointer = position;
1309 + if(str[pointer] & ESCAPE_MASK){ /*if the first bit of the current char is 1*/
1311 + /*then str[pointer] is an escape character*/
1313 + char escape_char = ((str[pointer] & WEIGHT_MASK) << 1); /*and we use it to count (by bit trans…
1315 + while(escape_char & ESCAPE_MASK && str[pointer]){/*every step, we move the byte of 1 bit left,…
1317 + ++pointer;
1320 + if(str[pointer]){ /*finally, if we are not on the \0 character, we jump to the next characte…
1321 + ++pointer;
1323 + return pointer;
1329 + int pointer = 0;
1330 + if(str[pointer] & ESCAPE_MASK){ /*if the first bit of the current char is 1*/
1332 + /*then str[pointer] is an escape character*/
1334 + char escape_char = ((str[pointer] & WEIGHT_MASK) << 1); /*and we use it to count following…
1336 + while(escape_char & ESCAPE_MASK && str[pointer]){ /*every step, we move the byte of 1 bi…
1337 + dest[pointer] = str[pointer];
1339 + ++pointer;
1342 + if(str[pointer]){
1343 + dest[pointer] = str[pointer];
1344 + ++pointer;
1347 + return pointer;
1355 + int pointer = 0;
1358 + if(key[pointer] & ESCAPE_MASK){ /*if the first bit of the current char is 1*/
1360 + /*then key[pointer] is an escap character*/
1362 + char escape_char = ((key[pointer] & WEIGHT_MASK) << 1); /*and we use it to count (…
1364 + while(escape_char & ESCAPE_MASK && key[pointer] == lex[pointer] ){
1366 + ++pointer;
1370 + if ( key[pointer] != lex[pointer] ) {
1374 + ++pointer;
1376 + if ( lex[pointer] != '\0' ) {
1389 + int pointer = 0;
1390 + while(str[pointer]) {
1391 + pointer = nextcharstart(str, pointer);