HomeSort by relevance Sort by last modified time
    Searched refs:IDX (Results 1 - 25 of 34) sorted by null

1 2

  /external/mesa3d/src/mesa/tnl/
t_vb_lighttmp.h 30 #if IDX & LIGHT_TWOSIDE
63 #if IDX & LIGHT_TWOSIDE
78 #if IDX & LIGHT_TWOSIDE
92 #if IDX & LIGHT_MATERIAL
95 #if IDX & LIGHT_TWOSIDE
103 #if IDX & LIGHT_TWOSIDE
167 #if IDX & LIGHT_TWOSIDE
176 #if IDX & LIGHT_TWOSIDE
222 #if IDX & LIGHT_TWOSIDE
248 #if IDX & LIGHT_TWOSID
    [all...]
t_vb_light.c 298 #define IDX (0)
302 #define IDX (LIGHT_TWOSIDE)
306 #define IDX (LIGHT_MATERIAL)
310 #define IDX (LIGHT_TWOSIDE|LIGHT_MATERIAL)
335 GLuint idx; local
367 idx = 0;
370 idx |= LIGHT_MATERIAL;
373 idx |= LIGHT_TWOSIDE;
378 store->light_func_tab[idx]( ctx, VB, stage, input );
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_maos_verts.c 87 #define IDX 0
94 #define IDX 1
101 #define IDX 2
109 #define IDX 3
117 #define IDX 4
125 #define IDX 5
134 #define IDX 6
143 #define IDX 7
153 #define IDX 8
162 #define IDX
    [all...]
radeon_maos_vbtmp.h 292 setup_tab[IDX].emit = TAG(emit);
293 setup_tab[IDX].vertex_format = IND;
294 setup_tab[IDX].vertex_size = sz;
300 #undef IDX
radeon_state_init.c 423 int i = atom->idx, j;
460 int i = atom->idx;
519 #define ALLOC_STATE_IDX( ATOM, CHK, SZ, NM, FLAG, IDX ) \
528 rmesa->hw.ATOM.idx = IDX; \
    [all...]
  /external/skia/bench/
VertBench.cpp 29 IDX = ROW * COL * 6,
34 uint16_t fIdx[IDX];
36 static void load_2_tris(uint16_t idx[], int x, int y, int rb) {
38 idx[0] = n; idx[1] = n + 1; idx[2] = rb + n + 1;
39 idx[3] = n; idx[4] = rb + n + 1; idx[5] = n + rb;
48 uint16_t* idx = fIdx local
    [all...]
  /external/liblzf/
lzf_c.c 51 # define IDX(h) ((( h >> (3*8 - HLOG)) - h ) & (HSIZE - 1))
53 # define IDX(h) ((( h >> (3*8 - HLOG)) - h*5) & (HSIZE - 1))
55 # define IDX(h) ((((h ^ (h << 5)) >> (3*8 - HLOG)) - h*5) & (HSIZE - 1))
59 * IDX works because it is very similar to a multiplicative hash, e.g.
71 # define IDX(h) ((h) & (HSIZE - 1))
145 hslot = htab + IDX (hval);
236 htab[IDX (hval)] = ip - LZF_HSLOT_BIAS;
241 htab[IDX (hval)] = ip - LZF_HSLOT_BIAS;
250 htab[IDX (hval)] = ip - LZF_HSLOT_BIAS;
  /prebuilts/tools/common/m2/repository/com/android/tools/external/liblzf/1.0/
liblzf-1.0.jar 
  /external/linux-kselftest/tools/testing/selftests/ntb/
ntb_test.sh 178 IDX=$2
180 ROW=($(read_file "$VPATH" | grep -e "^$IDX"))
223 IDX=$1
227 echo "Running $IDX tests on: $(basename $LOC) / $(basename $REM)"
229 write_mw "$LOC/$IDX"
231 split_remote "$LOC/$IDX"
239 split_remote "$REM/peer_$IDX"
  /external/liblzf/src/org/liblzf/
CLZF.java 139 static int IDX(int h)
178 hslot = IDX (hval);
230 htab[IDX (hval)] = iidx;
234 htab[IDX (hval)] = iidx;
  /toolchain/binutils/binutils-2.25/gas/config/
obj-coff-seh.h 202 #define PEX64_SCOPE_ENTRY(COUNTOFUNWINDCODES, IDX) \
204 PEX64_SCOPE_ENTRY_SIZE * (IDX))
  /external/mesa3d/src/compiler/
glsl_types.cpp 446 int idx = pos - array->name; local
447 snprintf(n, idx+1, "%s", array->name);
448 snprintf(n + idx, name_length - idx, "[%u]%s",
449 length, array->name + idx);
561 #define IDX(c,r) (((c-1)*3) + (r-1))
564 switch (IDX(columns, rows)) {
565 case IDX(2,2): return dmat2_type;
566 case IDX(2,3): return dmat2x3_type;
567 case IDX(2,4): return dmat2x4_type
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
BasicBlock.cpp 327 int IDX = PN->getBasicBlockIndex(this);
328 while (IDX != -1) {
329 PN->setIncomingBlock((unsigned)IDX, New);
330 IDX = PN->getBasicBlockIndex(this);
  /external/liblzf/cs/
CLZF.cs 139 UInt32 IDX(UInt32 h)
178 hslot = IDX (hval);
230 htab[IDX (hval)] = iidx;
234 htab[IDX (hval)] = iidx;
  /external/llvm/lib/IR/
BasicBlock.cpp 404 int IDX = PN->getBasicBlockIndex(this);
405 while (IDX != -1) {
406 PN->setIncomingBlock((unsigned)IDX, New);
407 IDX = PN->getBasicBlockIndex(this);
  /external/python/cpython2/Modules/_ctypes/libffi/src/x86/
ffi.c 659 #define ISFLOAT(IDX) (cif->arg_types[IDX]->type == FFI_TYPE_FLOAT || cif->arg_types[IDX]->type == FFI_TYPE_DOUBLE)
660 #define FLAG(IDX) (cif->nargs>(IDX)&&ISFLOAT(IDX)?(1<<(IDX)):0)
  /external/libtextclassifier/common/
feature-extractor.h 482 // FeatureFunction<OBJ, IDX, ARGS...>, where the derived class DER is
486 // IDX GetFocus(const WorkspaceSet &workspaces, const OBJ &object);
490 template <class DER, class OBJ, class IDX, class... ARGS>
492 : public NestedFeatureFunction<FeatureFunction<OBJ, IDX, ARGS...>, OBJ,
503 IDX focus =
514 IDX focus =
  /toolchain/binutils/binutils-2.25/bfd/
section.c 688 .#define BFD_FAKE_SECTION(SEC, FLAGS, SYM, NAME, IDX) \
690 . { NAME, IDX, 0, NULL, NULL, FLAGS, 0, \
751 #define STD_SECTION(NAME, IDX, FLAGS) \
752 BFD_FAKE_SECTION(_bfd_std_section[IDX], FLAGS, &global_syms[IDX], NAME, IDX)
    [all...]
aout-ns32k.c 195 #define MY_put_reloc(BFD, EXT, IDX, VAL, HOWTO, RELOC) \
196 MY (put_reloc) (BFD, EXT, IDX, VAL, HOWTO, RELOC)
aout-arm.c 187 #define MY_put_reloc(BFD, EXT, IDX, VAL, HOWTO, RELOC) \
188 MY (put_reloc) (BFD, EXT, IDX, VAL, HOWTO, RELOC)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
basic-block.h 70 #define DEF_EDGE_FLAG(NAME,IDX) EDGE_##NAME = 1 << IDX ,
234 #define DEF_BASIC_BLOCK_FLAG(NAME,IDX) BB_##NAME = 1 << IDX ,
    [all...]
  /toolchain/binutils/binutils-2.25/include/coff/
pe.h 584 #define PEX64_SCOPE_ENTRY(COUNTOFUNWINDCODES, IDX) \
586 PEX64_SCOPE_ENTRY_SIZE * (IDX))
  /prebuilts/go/darwin-x86/src/crypto/elliptic/
p256_asm_s390x.s 206 // func p256Select(point *p256Point, table []p256Point, idx int)
225 #define IDX V19
231 VLREPB idx+(32+7)(FP), IDX
251 VCEQG SEL2, IDX, SEL1
290 #undef IDX
298 // func p256SelectBase(point *p256Point, table []p256Point, idx int)
317 #define IDX V19
323 VLREPB idx+(32+7)(FP), IDX
    [all...]
  /prebuilts/go/linux-x86/src/crypto/elliptic/
p256_asm_s390x.s 206 // func p256Select(point *p256Point, table []p256Point, idx int)
225 #define IDX V19
231 VLREPB idx+(32+7)(FP), IDX
251 VCEQG SEL2, IDX, SEL1
290 #undef IDX
298 // func p256SelectBase(point *p256Point, table []p256Point, idx int)
317 #define IDX V19
323 VLREPB idx+(32+7)(FP), IDX
    [all...]
  /device/linaro/bootloader/edk2/OptionRomPkg/AtapiPassThruDxe/
AtapiPassThru.h 249 #define IDX BIT1 ///< Index
    [all...]

Completed in 1823 milliseconds

1 2