• Home
  • Raw
  • Download

Lines Matching refs:LCHAR

26 ESR_ReturnCode lstrtrim(LCHAR* text)  in lstrtrim()
43 ESR_ReturnCode lstrinsert(const LCHAR* source, LCHAR* target, size_t offset, size_t* len) in lstrinsert()
67 ESR_ReturnCode lstrreplace(LCHAR* text, const LCHAR source, const LCHAR target) in lstrreplace()
69 LCHAR* index; in lstrreplace()
81 ESR_ReturnCode lstrtoi(const LCHAR* text, int* result, int base) in lstrtoi()
83 LCHAR* endPtr; in lstrtoi()
93 ESR_ReturnCode lstrtoui(const LCHAR* text, unsigned int* result, int base) in lstrtoui()
95 LCHAR* endPtr; in lstrtoui()
105 ESR_ReturnCode lstrtof(const LCHAR* text, float* result) in lstrtof()
107 LCHAR* endPtr; in lstrtof()
117 ESR_ReturnCode lstrtob(const LCHAR* text, ESR_BOOL* result) in lstrtob()
158 ESR_ReturnCode LCHARGetInt( LCHAR* text, int* value, LCHAR** finalPosition) in LCHARGetInt()
160 LCHAR *beg, *end; in LCHARGetInt()
161 LCHAR temp; in LCHARGetInt()
190 ESR_ReturnCode lstrlwr(LCHAR* string) in lstrlwr()
197 *string = (LCHAR) LTOLOWER(*string); in lstrlwr()
207 ESR_ReturnCode lstrupr(LCHAR* string) in lstrupr()
214 *string = (LCHAR) LTOUPPER(*string); in lstrupr()
225 ESR_ReturnCode lstrcasecmp(const LCHAR *string1, const LCHAR *string2, int *result) in lstrcasecmp()
252 static void pxtoa(unsigned long val, LCHAR *buf, unsigned radix, int is_neg) in pxtoa()
254 LCHAR *p; /* pointer to traverse string */ in pxtoa()
255 LCHAR *firstdig; /* pointer to first digit */ in pxtoa()
256 LCHAR temp; /* temp char */ in pxtoa()
277 *p++ = (LCHAR)(digval - 10 + 'a'); /* a letter */ in pxtoa()
279 *p++ = (LCHAR)(digval + '0'); /* a digit */ in pxtoa()
302 ESR_ReturnCode litostr(int value, LCHAR *string, size_t *len, int radix) in litostr()
306 LCHAR buffer[33]; in litostr()
331 ESR_ReturnCode lultostr(unsigned long value, LCHAR *string, size_t *len, int radix) in lultostr()
334 LCHAR buffer[33]; in lultostr()