Home
last modified time | relevance | path

Searched refs:svalue (Results 1 – 16 of 16) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Dutil.c294 int ll2string(char *dst, size_t dstlen, long long svalue) { in ll2string() argument
306 if (svalue < 0) { in ll2string()
307 if (svalue != LLONG_MIN) { in ll2string()
308 value = -svalue; in ll2string()
314 value = svalue; in ll2string()
/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dlobject.c168 return svalue(L->top - 1); in luaO_pushvfstring()
H A Dprint.c116 printf("\t; %s",svalue(&f->k[bx])); in PrintCode()
H A Dldebug.c491 return svalue(&p->k[INDEXK(c)]); in kname()
512 *name = svalue(&p->k[g]); in getobjname()
H A Dlobject.h211 #define svalue(o) getstr(rawtsvalue(o)) macro
H A Dlgc.c167 weakkey = (strchr(svalue(mode), 'k') != NULL); in traversetable()
168 weakvalue = (strchr(svalue(mode), 'v') != NULL); in traversetable()
H A Dlvm.c38 if (ttisstring(obj) && luaO_str2d(svalue(obj), &num)) { in luaV_tonumber()
306 memcpy(buffer+tl, svalue(top-i), l); in luaV_concat()
H A Dlapi.c357 return svalue(o); in lua_tolstring()
/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlobject.c224 return svalue(L->top - 1); in luaO_pushvfstring()
H A Dldebug.c328 *name = svalue(kvalue); /* it is its own name */ in kname()
442 *name = svalue(&p->k[b]); in getobjname()
H A Dlgc.c438 ((weakkey = strchr(svalue(mode), 'k')), in traversetable()
439 (weakvalue = strchr(svalue(mode), 'v')), in traversetable()
829 ? svalue(L->top - 1) in GCTM()
H A Dlobject.h423 #define svalue(o) getstr(rawtsvalue(o)) macro
H A Dlvm.c37 if (ttisstring(obj) && luaO_str2d(svalue(obj), tsvalue(obj)->len, &num)) { in luaV_tonumber()
325 memcpy(buffer+tl, svalue(top-i), l * sizeof(char)); in luaV_concat()
H A Dlapi.c400 return svalue(o); in lua_tolstring()
/f-stack/freebsd/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_eeprom.c3670 u_int16_t *svalue; in ar9300_calibration_data_read_eeprom() local
3679 svalue = (u_int16_t *) value; in ar9300_calibration_data_read_eeprom()
3680 if (! ath_hal_eepromRead(ah, eep_addr, svalue)) { in ar9300_calibration_data_read_eeprom()
3685 buffer[i] = (*svalue >> (8 * byte_addr)) & 0xff; in ar9300_calibration_data_read_eeprom()
3697 u_int32_t svalue; in ar9300_calibration_data_read_otp() local
3706 if (!ar9300_otp_read(ah, eep_addr, &svalue, is_wifi)) { in ar9300_calibration_data_read_otp()
3711 buffer[i] = (svalue >> (8 * byte_addr)) & 0xff; in ar9300_calibration_data_read_otp()
H A Deeprom.diff89 u_int32_t svalue;