Searched refs:tmp7 (Results 1 – 5 of 5) sorted by relevance
| /picolibc-latest/newlib/libc/machine/hppa/ |
| D | memcmp.S | 35 #define tmp7 22 macro 83 ckbyte2: extru s2word,7,8,tmp7 /* get first byte (character) */ 84 combf,= tmp3,tmp7,done /* quit if first byte is not equal */ 85 sub tmp3,tmp7,ret0 /* return difference (delay slot) */ 88 extru s2word,15,8,tmp7 /* get second byte (character) */ 89 combf,= tmp3,tmp7,done /* quit if second byte is not equal */ 90 sub tmp3,tmp7,ret0 /* return difference (delay slot) */ 93 extru s2word,23,8,tmp7 /* get third byte (character) */ 94 combf,= tmp3,tmp7,done /* done if third byte is not equal */ 95 sub tmp3,tmp7,ret0 /* return difference (delay slot) */ [all …]
|
| D | strncmp.S | 31 #define tmp7 22 macro 79 ckbyte2: extru s2word,7,8,tmp7 /* get first byte (character) */ 80 combf,= tmp3,tmp7,done /* quit if first byte is not equal */ 81 sub tmp3,tmp7,ret0 /* return difference (delay slot) */ 86 extru s2word,15,8,tmp7 /* get second byte (character) */ 87 combf,= tmp3,tmp7,done /* quit if second byte is not equal */ 88 sub tmp3,tmp7,ret0 /* return difference (delay slot) */ 93 extru s2word,23,8,tmp7 /* get third byte (character) */ 94 combf,= tmp3,tmp7,done /* done if third byte is not equal */ 95 sub tmp3,tmp7,ret0 /* return difference (delay slot) */ [all …]
|
| D | strcmp.S | 41 #define tmp7 22 macro 202 ldi -1,tmp7 /* load tmp7 with 0xffffffff */ 206 vshd tmp7,s1word,save 208 ldwm 4(s1),tmp7 210 uxor,nbz tmp7,r0,r0 /* is there a null in s1? */ 212 vshd s1word,tmp7,save 222 copy tmp7,s1word /* move tmp7 to s1word */ 252 ldi -1,tmp7 /* load tmp7 with 0xffffffff */ 256 vshd tmp7,s2word,save 258 ldwm 4(s2),tmp7 [all …]
|
| D | strncat.S | 33 #define tmp7 ret1 /* source offset-- reset to orig source addr if not aligned */ macro 76 copy s_addr, tmp7 /* save s_addr in case we find null before first store */ 135 copy r0, tmp7 /* zero out tmp7 so we don't try to use original s_addr anymore */ 174 copy r0,tmp7 /* zero out tmp7 so we don't use orignal s_addr since no longer valid */ 213 combt,=,n r0,tmp7,null3a /* if tmp7 is not valid address then branch below */ 215 copy tmp7, s_addr
|
| /picolibc-latest/newlib/testsuite/newlib.string/ |
| D | tstring.c | 77 char *tmp1, *tmp2, *tmp3, *tmp4, *tmp5, *tmp6, *tmp7; in main() local 96 tmp7 = buffer7; in main() 314 tmp7[2*i+z] = second_char; in main() 315 strcpy (tmp7, tmp1); in main() 329 strncat (tmp7, tmp1, i+2) != tmp7 || in main() 330 strcmp (tmp7, tmp6) || in main() 331 tmp7[2*i+z] != second_char) in main()
|