Searched refs:Lcloop (Results 1 – 11 of 11) sorted by relevance
/picolibc-latest/newlib/libc/machine/i960/ |
D | strncpy.S | 112 bl Lcloop.a # if less than four bytes to go, go to char loop 115 be Lcloop.c # go to char loop if null encountered 120 Lcloop.a: # character copying loop (max_bytes < 3) 122 Lcloop.b: 129 bne Lcloop.a # branch if we are NOT null padding 130 b Lcloop.b # branch if we are null padding 138 Lcloop.c: # character copying loop 143 bne Lcloop.c # loop until null found 152 bg Lcloop.b # if so, goto character loop
|
D | strncat.S | 117 bge Lcloop.a # branch if less than 4 bytes to move 120 be Lcloop # branch if null byte reached 127 Lcloop.b: 130 Lcloop: # character copying loop (max_byte > 3) label 134 bne Lcloop.b # loop if null not encountered yet 140 Lcloop.c: 143 Lcloop.a: # character copying loop (max_byte <= 3) 149 bne Lcloop.c # loop if null not encountered yet
|
D | strncmp.S | 103 be .Lcloop.a # perform char comparator if null byte found 106 .Lcloop.a: subo 4,g0,g0 # adjust max_byte counter 109 .Lcloop: and g4,g5,g7 # compare individual bytes label 116 cmpobl g0,g2,.Lcloop # if not, loop. if so, Lexit (equality)
|
D | strcmp.S | 98 be .Lcloop # branch if null byte encountered 104 .Lcloop: and g4,g2,g5 # extract and compare individual bytes label 109 bne .Lcloop # loop if null not encountered
|
D | memset.S | 94 cmpobge.f 7,g2,Lcloop 111 Lcloop: label 116 bne.t Lcloop # loop if more bytes to store
|
D | strcpy.S | 163 be Lcloop # branch if null present 169 Lcloop: # character copying loop label 175 bne Lcloop # quit if null encountered
|
D | memcmp.S | 109 .Lcloop: and g4,g5,g7 # extract and compare individual bytes label 114 cmpobl g0,g2,.Lcloop # quit if max_bytes is exhausted
|
D | strcmp_ca.S | 141 bne.f Lcloop # branch if src1 and src2 unequal 179 bne.f Lcloop # branch if src1 and src2 unequal 199 Lcloop: # character comparing loop label 209 bne.t Lcloop # branch if null not reached
|
D | strncmp_ca.S | 145 bne.f Lcloop # branch if src1 and src2 unequal 182 bne.f Lcloop # branch if src1 and src2 unequal 200 Lcloop: # character comparing loop label 211 bne.t Lcloop # branch if null not reached
|
D | memcpy.S | 155 Lcloop.a: 159 cmpobne g6, g0, Lcloop.a # quit if no more bytes to move
|
D | memcmp_ca.S | 145 bne.f Lcloop # branch if src1 and src2 unequal 159 Lcloop: # character comparing loop label 170 b Lcloop # branch if null not reached
|