Home
last modified time | relevance | path

Searched refs:findex (Results 1 – 3 of 3) sorted by relevance

/device/google/contexthub/firmware/external/arm/
Darm_sin_cos_f32.c216 float32_t findex; in arm_sin_f32() local
235 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() local
324 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()
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
Dfset2.c51 static int *findex; variable
1190 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 …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dliolib.c263 static FILE *getiofile (lua_State *L, const char *findex) { in getiofile() argument
265 lua_getfield(L, LUA_REGISTRYINDEX, findex); in getiofile()
268 luaL_error(L, "standard %s file is closed", findex + strlen(IO_PREFIX)); in getiofile()