Searched refs:tmp7 (Results 1 – 5 of 5) sorted by relevance
/picolibc-3.7.0-3.6.0/newlib/libc/machine/hppa/ |
D | memcmp.S | 33 #define tmp7 22 macro 81 ckbyte2: extru s2word,7,8,tmp7 /* get first byte (character) */ 82 combf,= tmp3,tmp7,done /* quit if first byte is not equal */ 83 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) */ 91 extru s2word,23,8,tmp7 /* get third byte (character) */ 92 combf,= tmp3,tmp7,done /* done if third byte is not equal */ 93 sub tmp3,tmp7,ret0 /* return difference (delay slot) */ [all …]
|
D | strncmp.S | 29 #define tmp7 22 macro 77 ckbyte2: extru s2word,7,8,tmp7 /* get first byte (character) */ 78 combf,= tmp3,tmp7,done /* quit if first byte is not equal */ 79 sub tmp3,tmp7,ret0 /* return difference (delay slot) */ 84 extru s2word,15,8,tmp7 /* get second byte (character) */ 85 combf,= tmp3,tmp7,done /* quit if second byte is not equal */ 86 sub tmp3,tmp7,ret0 /* return difference (delay slot) */ 91 extru s2word,23,8,tmp7 /* get third byte (character) */ 92 combf,= tmp3,tmp7,done /* done if third byte is not equal */ 93 sub tmp3,tmp7,ret0 /* return difference (delay slot) */ [all …]
|
D | strcmp.S | 39 #define tmp7 22 macro 200 ldi -1,tmp7 /* load tmp7 with 0xffffffff */ 204 vshd tmp7,s1word,save 206 ldwm 4(s1),tmp7 208 uxor,nbz tmp7,r0,r0 /* is there a null in s1? */ 210 vshd s1word,tmp7,save 220 copy tmp7,s1word /* move tmp7 to s1word */ 250 ldi -1,tmp7 /* load tmp7 with 0xffffffff */ 254 vshd tmp7,s2word,save 256 ldwm 4(s2),tmp7 [all …]
|
D | strncat.S | 31 #define tmp7 ret1 /* source offset-- reset to orig source addr if not aligned */ macro 74 copy s_addr, tmp7 /* save s_addr in case we find null before first store */ 133 copy r0, tmp7 /* zero out tmp7 so we don't try to use original s_addr anymore */ 172 copy r0,tmp7 /* zero out tmp7 so we don't use orignal s_addr since no longer valid */ 211 combt,=,n r0,tmp7,null3a /* if tmp7 is not valid address then branch below */ 213 copy tmp7, s_addr
|
/picolibc-3.7.0-3.6.0/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()
|