Home | History | Annotate | Download | only in cintltst

Lines Matching refs:offunsafe

416     uint32_t offunsafe=0, offsafe=0;
419 while(offunsafe < sizeof(input)){
420 UTF8_FWD_1_UNSAFE(input, offunsafe);
421 if(offunsafe != fwd_unsafe[i]){
422 log_err("ERROR: Forward_unsafe offset expected:%d, Got:%d\n", fwd_unsafe[i], offunsafe);
428 while(offunsafe < sizeof(input)){
429 U8_FWD_1_UNSAFE(input, offunsafe);
430 if(offunsafe != fwd_unsafe[i]){
431 log_err("ERROR: U8_FWD_1_UNSAFE offset expected:%d, Got:%d\n", fwd_unsafe[i], offunsafe);
454 offunsafe=sizeof(input);
456 while(offunsafe > 0){
457 UTF8_BACK_1_UNSAFE(input, offunsafe);
458 if(offunsafe != back_unsafe[i]){
459 log_err("ERROR: Backward_unsafe offset expected:%d, Got:%d\n", back_unsafe[i], offunsafe);
464 offunsafe=sizeof(input);
466 while(offunsafe > 0){
467 U8_BACK_1_UNSAFE(input, offunsafe);
468 if(offunsafe != back_unsafe[i]){
469 log_err("ERROR: U8_BACK_1_UNSAFE offset expected:%d, Got:%d\n", back_unsafe[i], offunsafe);
494 offunsafe=0;
496 UTF8_FWD_N_UNSAFE(input, offunsafe, Nvalue[i]);
497 if(offunsafe != fwd_N_unsafe[i]){
498 log_err("ERROR: Forward_N_unsafe offset=%d expected:%d, Got:%d\n", i, fwd_N_unsafe[i], offunsafe);
502 offunsafe=0;
504 U8_FWD_N_UNSAFE(input, offunsafe, Nvalue[i]);
505 if(offunsafe != fwd_N_unsafe[i]){
506 log_err("ERROR: U8_FWD_N_UNSAFE offset=%d expected:%d, Got:%d\n", i, fwd_N_unsafe[i], offunsafe);
528 offunsafe=sizeof(input);
530 UTF8_BACK_N_UNSAFE(input, offunsafe, Nvalue[i]);
531 if(offunsafe != back_N_unsafe[i]){
532 log_err("ERROR: backward_N_unsafe offset=%d expected:%d, Got:%d\n", i, back_N_unsafe[i], offunsafe);
536 offunsafe=sizeof(input);
538 U8_BACK_N_UNSAFE(input, offunsafe, Nvalue[i]);
539 if(offunsafe != back_N_unsafe[i]){
540 log_err("ERROR: U8_BACK_N_UNSAFE offset=%d expected:%d, Got:%d\n", i, back_N_unsafe[i], offunsafe);