Lines Matching refs:word
52 ! of memory, aligning the memory for word-wise copies, and
61 andcc %o0, 3, %o4 ! s word aligned ?
64 bz %ncc, .prepword ! yup, prepare for word-wise search
74 bz %ncc, .prepword2 ! yup, prepare for word-wise search
75 sllx %o1, 8, %g1 ! start spreading c across word
83 bz %ncc, .prepword3 ! yup, prepare for word-wise search
102 or %o1, %g1, %o1 ! of a word <--------+
105 lduw [%o0 + %o2], %o3 ! src word
108 bcs %ncc, .lastword ! if counter wraps, last word
109 xor %o3, %o1, %g1 ! tword = word ^ c
114 lduw [%o0 + %o2], %o3 ! src word
116 ! here we know "word" contains the searched character, and no byte in
117 ! "word" exceeds n. If we had exceeded n, we would have gone to label
118 ! .lastword. "tword" has null bytes where "word" had c. After
144 ! Here we know that "word" is the last word in the search, and that
145 ! some bytes possibly exceed n. However, "word" might also contain c.
146 ! "tword" (in %g1) has null bytes where "word" had c. Examine "tword"