Searched refs:findex (Results 1 – 3 of 3) sorted by relevance
216 float32_t findex; in arm_sin_f32() local235 findex = (float32_t) FAST_MATH_TABLE_SIZE * in; in arm_sin_f32()236 index = ((uint16_t)findex) & 0x1ff; in arm_sin_f32()239 fract = findex - (float32_t) index; in arm_sin_f32()305 float32_t findex; in arm_cos_f32() local324 findex = (float32_t) FAST_MATH_TABLE_SIZE * in; in arm_cos_f32()325 index = ((uint16_t)findex) & 0x1ff; in arm_cos_f32()328 fract = findex - (float32_t) index; in arm_cos_f32()
51 static int *findex; variable1190 if ( ftbl[k][findex[k]] == nil ) return NULL;1194 findex[k+1] = 0;1195 (findex[k])++; /* try next token at this k */1199 u = tmake(tnode(ftbl[k][findex[k]]), t, NULL);1200 if ( k == max_k ) (findex[k])++;1243 findex = (int *) calloc(LL_k+1, sizeof(int));1244 if ( findex == NULL )1253 for (k=1; k<=LL_k; k++) findex[k] = 0;1334 free( (char *)findex );[all …]
263 static FILE *getiofile (lua_State *L, const char *findex) { in getiofile() argument265 lua_getfield(L, LUA_REGISTRYINDEX, findex); in getiofile()268 luaL_error(L, "standard %s file is closed", findex + strlen(IO_PREFIX)); in getiofile()