Home
last modified time | relevance | path

Searched defs:coord (Results 1 – 25 of 252) sorted by relevance

1234567891011

/external/mesa3d/src/mesa/main/
Dtexgen.c46 get_texgen(struct gl_context *ctx, GLuint texunitIndex, GLenum coord, const char* caller) in get_texgen()
78 texgenfv( GLuint texunitIndex, GLenum coord, GLenum pname, in texgenfv()
182 gettexgendv( GLuint texunitIndex, GLenum coord, GLenum pname, in gettexgendv()
212 gettexgenfv( GLenum texunitIndex, GLenum coord, GLenum pname, in gettexgenfv()
250 gettexgeniv( GLenum texunitIndex, GLenum coord, GLenum pname, in gettexgeniv()
293 _mesa_TexGenfv( GLenum coord, GLenum pname, const GLfloat *params ) in _mesa_TexGenfv()
301 _mesa_MultiTexGenfvEXT( GLenum texunit, GLenum coord, GLenum pname, const GLfloat *params ) in _mesa_MultiTexGenfvEXT()
308 _mesa_TexGeniv(GLenum coord, GLenum pname, const GLint *params ) in _mesa_TexGeniv()
325 _mesa_MultiTexGenivEXT(GLenum texunit, GLenum coord, GLenum pname, const GLint *params ) in _mesa_MultiTexGenivEXT()
342 _mesa_TexGend(GLenum coord, GLenum pname, GLdouble param ) in _mesa_TexGend()
[all …]
/external/tensorflow/tensorflow/cc/training/
Dcoordinator_test.cc32 void WaitForStopThread(Coordinator* coord, Notification* about_to_wait, in WaitForStopThread()
40 Coordinator coord; in TEST() local
58 explicit MockQueueRunner(Coordinator* coord) { in MockQueueRunner()
65 MockQueueRunner(Coordinator* coord, int* join_counter) in MockQueueRunner()
122 Coordinator coord; in TEST() local
144 Coordinator coord; in TEST() local
162 Coordinator coord; in TEST() local
177 Coordinator coord({Code::CANCELLED, Code::OUT_OF_RANGE}); in TEST() local
200 Coordinator coord; in TEST() local
208 Coordinator coord; in TEST() local
/external/python/pycparser/pycparser/
Dc_ast.py169 def __init__(self, type, dim, dim_quals, coord=None): argument
191 def __init__(self, name, subscript, coord=None): argument
212 def __init__(self, op, lvalue, rvalue, coord=None): argument
234 def __init__(self, op, left, right, coord=None): argument
256 def __init__(self, coord=None): argument
270 def __init__(self, expr, stmts, coord=None): argument
292 def __init__(self, to_type, expr, coord=None): argument
313 def __init__(self, block_items, coord=None): argument
331 def __init__(self, type, init, coord=None): argument
352 def __init__(self, type, value, coord=None): argument
[all …]
/external/rust/crates/plotters/src/coord/ranged1d/combinators/
Dlinspace.rs353 let coord = (0.0f64..100.0f64).step(0.1); in test_float_linspace() localVariable
365 let coord = (0.0f64..100.0f64).step(1.0); in test_rounding_methods() localVariable
370 let coord = coord.use_floor(); in test_rounding_methods() localVariable
377 let coord = coord.use_ceil(); in test_rounding_methods() localVariable
384 let coord = coord.use_round(); in test_rounding_methods() localVariable
392 let coord = (0.0f64..-100.0f64).step(-1.0); in test_rounding_methods() localVariable
397 let coord = coord.use_floor(); in test_rounding_methods() localVariable
404 let coord = coord.use_ceil(); in test_rounding_methods() localVariable
411 let coord = coord.use_round(); in test_rounding_methods() localVariable
424 let coord = (Duration::seconds(0)..Duration::seconds(100)).step(Duration::milliseconds(1)); in test_duration_linspace() localVariable
/external/tensorflow/tensorflow/python/training/
Dcoordinator_test.py30 def StopOnEvent(coord, wait_for_stop, set_when_stopped): argument
36 def RaiseOnEvent(coord, wait_for_stop, set_when_stopped, ex, report_exception): argument
50 def RaiseOnEventUsingContextHandler(coord, wait_for_stop, set_when_stopped, ex): argument
58 def SleepABit(n_secs, coord=None): argument
64 def WaitForThreadsToRegister(coord, num_threads): argument
337 def _StopAt0(coord, n): argument
Dqueue_runner_impl.py239 def _run(self, sess, enqueue_op, coord=None): argument
285 def _close_on_stop(self, sess, cancel_op, coord): argument
301 def create_threads(self, sess, coord=None, daemon=False, start=False): argument
417 def start_queue_runners(sess=None, coord=None, daemon=True, start=True, argument
Dcoordinator.py429 def __init__(self, coord, timer_interval_secs, target=None, args=None, argument
460 def loop(coord, timer_interval_secs, target, args=None, kwargs=None): argument
/external/mesa3d/src/mesa/swrast/
Ds_fog.c68 #define LINEAR_FOG(f, coord) f = (fogEnd - coord) * fogScale argument
70 #define EXP_FOG(f, coord) f = expf(density * coord) argument
72 #define EXP2_FOG(f, coord) \ argument
81 #define BLEND_FOG(f, coord) f = coord argument
/external/mesa3d/src/mesa/math/
Dm_dotprod_tmp.h39 GLfloat *coord = coord_vec->start; in TAG() local
59 GLfloat *coord = coord_vec->start; in TAG() local
81 GLfloat *coord = coord_vec->start; in TAG() local
/external/dng_sdk/source/
Ddng_xy_coord.cpp23 dng_xy_coord XYZtoXY (const dng_vector_3 &coord) in XYZtoXY()
46 dng_vector_3 XYtoXYZ (const dng_xy_coord &coord) in XYtoXYZ()
/external/angle/src/compiler/translator/TranslatorMetalDirect/
DProgramPrelude.cpp3050 const TType &coord = func.getParam(1)->getType(); in BuildFuncToEmitter() local
3143 const TType &coord = func.getParam(1)->getType(); in BuildFuncToEmitter() local
3193 const TType &coord = func.getParam(1)->getType(); in BuildFuncToEmitter() local
3243 const TType &coord = func.getParam(1)->getType(); in BuildFuncToEmitter() local
3280 const TType &coord = func.getParam(1)->getType(); in BuildFuncToEmitter() local
3312 const TType &coord = func.getParam(1)->getType(); in BuildFuncToEmitter() local
3344 const TType &coord = func.getParam(1)->getType(); in BuildFuncToEmitter() local
/external/rust/crates/plotters/src/coord/ranged1d/types/
Dnumeric.rs334 let coord: RangedCoordu32 = (0..20).into(); in test_linear_coord_map() localVariable
340 let coord: RangedCoordf32 = (0f32..20f32).into(); in test_linear_coord_map() localVariable
356 let coord: RangedCoordu32 = (0..20).into(); in test_coord_unmap() localVariable
/external/deqp/modules/gles3/functional/
Des3fFragDepthTests.cpp198 const float coord[] = in iterate() local
327 const float coord[] = in iterate() local
431 static float evalConstDepth (const Vec2& coord) { DE_UNREF(coord); return 0.5f; } in evalConstDepth()
432 static float evalDynamicDepth (const Vec2& coord) { return (coord.x()+coord.y())*0.5f; } in evalDynamicDepth()
433 static float evalNoWrite (const Vec2& coord) { return 1.0f - (coord.x()+coord.y())*0.5f; } in evalNoWrite()
435 static float evalDynamicConditionalDepth (const Vec2& coord) in evalDynamicConditionalDepth()
/external/deqp/external/openglcts/modules/common/
DglcFragDepthTests.cpp210 const float coord[] = { 0.0f, 0.0f, 0.0f, 1.0f, 1.0f, 0.0f, 1.0f, 1.0f }; in iterate() local
328 const float coord[] = { 0.0f, 0.0f, 0.0f, 1.0f, 1.0f, 0.0f, 1.0f, 1.0f }; in iterate() local
416 static float evalConstDepth(const Vec2& coord) in evalConstDepth()
421 static float evalDynamicDepth(const Vec2& coord) in evalDynamicDepth()
425 static float evalNoWrite(const Vec2& coord) in evalNoWrite()
430 static float evalDynamicConditionalDepth(const Vec2& coord) in evalDynamicConditionalDepth()
/external/deqp/framework/common/
DtcuTexLookupVerifier.cpp595 const Vec2& coord, in isNearestSampleResultValid()
630 const Vec3& coord, in isNearestSampleResultValid()
723 const Vec2& coord, in isLinearSampleResultValid()
792 const Vec3& coord, in isLinearSampleResultValid()
873 const float coord, in isNearestMipmapLinearSampleResultValid()
909 const Vec2& coord, in isNearestMipmapLinearSampleResultValid()
959 const Vec3& coord, in isNearestMipmapLinearSampleResultValid()
1102 const Vec2& coord, in isLinearMipmapLinearSampleResultValid()
1205 const Vec3& coord, in isLinearMipmapLinearSampleResultValid()
1347 const Vec2& coord, in isLevelSampleResultValid()
[all …]
DtcuTexVerifierUtil.cpp58 Vec2 computeNonNormalizedCoordBounds (const bool normalizedCoords, const int dim, const float coord in computeNonNormalizedCoordBounds()
73 void getPossibleCubeFaces (const Vec3& coord, const IVec3& bits, CubeFace* faces, int& numFaces) in getPossibleCubeFaces()
/external/deqp/framework/opengl/simplereference/
DsglrContextUtil.cpp55 const float coord[] = in drawQuadWithVaoBuffers() local
125 const float coord[] = in drawQuadWithClientPointers() local
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/math/ec/
DECCurve.java43 protected int coord; field in ECCurve.Config
47 Config(int coord, ECEndomorphism endomorphism, ECMultiplier multiplier) in Config()
54 public Config setCoordinateSystem(int coord) in setCoordinateSystem()
101 protected int coord = COORD_AFFINE; field in ECCurve
156 public boolean supportsCoordinateSystem(int coord) in supportsCoordinateSystem()
DECPoint.java21 int coord = null == curve ? ECCurve.COORD_AFFINE : curve.getCoordinateSystem(); in getInitialZCoords() local
200 int coord = this.getCurveCoordinateSystem(); in isNormalized() local
680 int coord = curve.getCoordinateSystem(); in add() local
898 int coord = curve.getCoordinateSystem(); in twice() local
1037 int coord = curve.getCoordinateSystem(); in twicePlus() local
1106 int coord = curve.getCoordinateSystem(); in threeTimes() local
1169 int coord = curve.getCoordinateSystem(); in timesPow2() local
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/math/ec/
DECCurve.java43 protected int coord; field in ECCurve.Config
47 Config(int coord, ECEndomorphism endomorphism, ECMultiplier multiplier) in Config()
54 public Config setCoordinateSystem(int coord) in setCoordinateSystem()
101 protected int coord = COORD_AFFINE; field in ECCurve
156 public boolean supportsCoordinateSystem(int coord) in supportsCoordinateSystem()
DECPoint.java21 int coord = null == curve ? ECCurve.COORD_AFFINE : curve.getCoordinateSystem(); in getInitialZCoords() local
200 int coord = this.getCurveCoordinateSystem(); in isNormalized() local
680 int coord = curve.getCoordinateSystem(); in add() local
898 int coord = curve.getCoordinateSystem(); in twice() local
1037 int coord = curve.getCoordinateSystem(); in twicePlus() local
1106 int coord = curve.getCoordinateSystem(); in threeTimes() local
1169 int coord = curve.getCoordinateSystem(); in timesPow2() local
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
DECCurve.java38 protected int coord; field in ECCurve.Config
42 Config(int coord, ECEndomorphism endomorphism, ECMultiplier multiplier) in Config()
49 public Config setCoordinateSystem(int coord) in setCoordinateSystem()
96 protected int coord = COORD_AFFINE; field in ECCurve
151 public boolean supportsCoordinateSystem(int coord) in supportsCoordinateSystem()
DECPoint.java19 int coord = null == curve ? ECCurve.COORD_AFFINE : curve.getCoordinateSystem(); in getInitialZCoords() local
198 int coord = this.getCurveCoordinateSystem(); in isNormalized() local
674 int coord = curve.getCoordinateSystem(); in add() local
892 int coord = curve.getCoordinateSystem(); in twice() local
1031 int coord = curve.getCoordinateSystem(); in twicePlus() local
1100 int coord = curve.getCoordinateSystem(); in threeTimes() local
1163 int coord = curve.getCoordinateSystem(); in timesPow2() local
/external/mesa3d/src/mesa/tnl/
Dt_vb_cliptmp.h123 GLfloat (*coord)[4] = VB->ClipPtr->data; in TAG() local
192 GLfloat (*coord)[4] = VB->ClipPtr->data; in TAG() local
271 GLfloat (*coord)[4] = VB->ClipPtr->data; in TAG() local
/external/mesa3d/src/compiler/nir/
Dnir_lower_input_attachments.c103 nir_ssa_def *coord = in try_lower_input_load() local
174 nir_ssa_def *coord = nir_vec3(&b, nir_channel(&b, frag_coord, 0), in try_lower_input_texop() local

1234567891011