Searched refs:sexp (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/glsl/tests/
H A Dsexps.py26 # We represent a sexp in Python using nested lists containing strings.
27 # So, for example, the sexp (constant float (1.000000)) is represented
32 def check_sexp(sexp):
33 """Verify that the argument is a proper sexp.
39 if isinstance(sexp, list):
40 for s in sexp:
42 elif not isinstance(sexp, basestring):
43 raise Exception('Not a sexp: {0!r}'.format(sexp))
45 def parse_sexp(sexp)
[all...]
/external/mesa3d/src/glsl/tests/
H A Dsexps.py26 # We represent a sexp in Python using nested lists containing strings.
27 # So, for example, the sexp (constant float (1.000000)) is represented
32 def check_sexp(sexp):
33 """Verify that the argument is a proper sexp.
39 if isinstance(sexp, list):
40 for s in sexp:
42 elif not isinstance(sexp, basestring):
43 raise Exception('Not a sexp: {0!r}'.format(sexp))
45 def parse_sexp(sexp)
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/tests/lower_jumps/
H A Dcreate_test_cases.py43 def make_declarations(sexp, already_declared = ()):
44 if isinstance(sexp, list):
45 if len(sexp) == 2 and sexp[0] == 'var_ref':
46 if sexp[1] not in already_declared:
47 declarations[sexp[1]] = [
48 'declare', ['in'], 'float', sexp[1]]
49 elif len(sexp) == 4 and sexp[0] == 'assign':
50 assert sexp[
[all...]
/external/mesa3d/src/glsl/tests/lower_jumps/
H A Dcreate_test_cases.py43 def make_declarations(sexp, already_declared = ()):
44 if isinstance(sexp, list):
45 if len(sexp) == 2 and sexp[0] == 'var_ref':
46 if sexp[1] not in already_declared:
47 declarations[sexp[1]] = [
48 'declare', ['in'], 'float', sexp[1]]
49 elif len(sexp) == 4 and sexp[0] == 'assign':
50 assert sexp[
[all...]
/external/stlport/src/
H A Dnum_get_float.cpp349 int sexp; /* scaling exponent */ local
389 _Stl_tenscale(value, dexp, sexp);
390 bexp += sexp;
525 int sexp; local
526 _Stl_tenscale(vv.i64, dexp, sexp);
527 bexp += sexp;

Completed in 144 milliseconds