Home
last modified time | relevance | path

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

12345678910>>...13

/external/mesa3d/src/mesa/main/
Dtexgen.c48 get_texgen(struct gl_context *ctx, GLuint texunitIndex, GLenum coord, const char* caller) in get_texgen()
80 texgenfv( GLuint texunitIndex, GLenum coord, GLenum pname, in texgenfv()
185 gettexgendv( GLuint texunitIndex, GLenum coord, GLenum pname, in gettexgendv()
218 gettexgenfv( GLenum texunitIndex, GLenum coord, GLenum pname, in gettexgenfv()
259 gettexgeniv( GLenum texunitIndex, GLenum coord, GLenum pname, in gettexgeniv()
305 _mesa_TexGenfv( GLenum coord, GLenum pname, const GLfloat *params ) in _mesa_TexGenfv()
313 _mesa_MultiTexGenfvEXT( GLenum texunit, GLenum coord, GLenum pname, const GLfloat *params ) in _mesa_MultiTexGenfvEXT()
320 _mesa_TexGeniv(GLenum coord, GLenum pname, const GLint *params ) in _mesa_TexGeniv()
337 _mesa_MultiTexGenivEXT(GLenum texunit, GLenum coord, GLenum pname, const GLint *params ) in _mesa_MultiTexGenivEXT()
354 _mesa_TexGend(GLenum coord, GLenum pname, GLdouble param ) in _mesa_TexGend()
[all …]
/external/rust/crates/plotters/src/coord/ranged1d/types/
Dnumeric.rs369 let coord: RangedCoordu32 = (0..20).into(); in test_linear_coord_map() localVariable
375 let coord: RangedCoordf32 = (0f32..20f32).into(); in test_linear_coord_map() localVariable
391 let coord: RangedCoordu32 = (0..20).into(); in test_coord_unmap() localVariable
399 let coord: RangedCoordf32 = (0.0..0.0).into(); in regression_test_issue_253_zero_sized_coord_not_hang() localVariable
405 let coord: RangedCoordf64 = (0.0..1e-25).into(); in test_small_coord() localVariable
412 let coord: RangedCoordf32 = (10.0..0.0).into(); in regression_test_issue_255_reverse_f32_coord_no_hang() localVariable
418 let coord: RangedCoordf64 = (-200.0..801.0).into(); in regession_test_issue_358_key_points_no_hang() localVariable
425 let coord: RangedCoordf64 = (10000000000001f64..10000000000002f64).into(); in regression_test_issue_358_key_points_no_hang_2() localVariable
432 let coord: RangedCoordf64 = (1.0..2.0).into(); in test_coord_follows_hint() localVariable
436 let coord: RangedCoordf64 = (1.0..125.0).into(); in test_coord_follows_hint() localVariable
[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/cronet/third_party/protobuf/
Dmaven_install.json12 "coord": "com.google.auto.value:auto-value-annotations:1.7.4", string
24 "coord": "com.google.code.findbugs:jsr305:3.0.2", string
36 "coord": "com.google.code.gson:gson:2.8.9", string
48 "coord": "com.google.errorprone:error_prone_annotations:2.5.1", string
60 "coord": "com.google.guava:failureaccess:1.0.1", string
72 "coord": "com.google.guava:guava-testlib:30.1.1-jre", string
101 "coord": "com.google.guava:guava:30.1.1-jre", string
127 … "coord": "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", string
139 "coord": "com.google.j2objc:j2objc-annotations:1.3", string
151 "coord": "com.google.truth:truth:1.1.2", string
[all …]
/external/protobuf/
Dmaven_install.json12 "coord": "com.google.auto.value:auto-value-annotations:1.7.4", string
24 "coord": "com.google.code.findbugs:jsr305:3.0.2", string
36 "coord": "com.google.code.gson:gson:2.8.9", string
48 "coord": "com.google.errorprone:error_prone_annotations:2.11.0", string
60 "coord": "com.google.guava:failureaccess:1.0.1", string
72 "coord": "com.google.guava:guava-testlib:31.1-jre", string
101 "coord": "com.google.guava:guava:31.1-jre", string
127 … "coord": "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", string
139 "coord": "com.google.j2objc:j2objc-annotations:1.3", string
151 "coord": "com.google.truth:truth:1.1.2", string
[all …]
/external/rust/crates/plotters/src/coord/ranged1d/combinators/
Dlinspace.rs354 let coord = (0.0f64..100.0f64).step(0.1); in test_float_linspace() localVariable
366 let coord = (0.0f64..100.0f64).step(1.0); in test_rounding_methods() localVariable
371 let coord = coord.use_floor(); in test_rounding_methods() localVariable
378 let coord = coord.use_ceil(); in test_rounding_methods() localVariable
385 let coord = coord.use_round(); in test_rounding_methods() localVariable
393 let coord = (0.0f64..-100.0f64).step(-1.0); in test_rounding_methods() localVariable
398 let coord = coord.use_floor(); in test_rounding_methods() localVariable
405 let coord = coord.use_ceil(); in test_rounding_methods() localVariable
412 let coord = coord.use_round(); in test_rounding_methods() localVariable
425 let coord = (Duration::seconds(0)..Duration::seconds(100)).step(Duration::milliseconds(1)); in test_duration_linspace() localVariable
/external/tensorflow/tensorflow/python/training/
Dcoordinator_test.py26 def StopOnEvent(coord, wait_for_stop, set_when_stopped): argument
32 def RaiseOnEvent(coord, wait_for_stop, set_when_stopped, ex, report_exception): argument
46 def RaiseOnEventUsingContextHandler(coord, wait_for_stop, set_when_stopped, ex): argument
54 def SleepABit(n_secs, coord=None): argument
60 def WaitForThreadsToRegister(coord, num_threads): argument
333 def _StopAt0(coord, n): argument
Dqueue_runner_impl.py236 def _run(self, sess, enqueue_op, coord=None): argument
282 def _close_on_stop(self, sess, cancel_op, coord): argument
298 def create_threads(self, sess, coord=None, daemon=False, start=False): argument
420 def start_queue_runners(sess=None, coord=None, daemon=True, start=True, argument
/external/bazelbuild-rules_android/
Drules_android_maven_install.json11 "coord": "androidx.annotation:annotation-experimental:1.1.0", string
23 "coord": "androidx.annotation:annotation:1.3.0", string
35 "coord": "androidx.concurrent:concurrent-futures:1.1.0", string
53 "coord": "androidx.databinding:databinding-common:8.2.0-alpha15", string
65 "coord": "androidx.databinding:databinding-compiler-common:8.2.0-alpha15", string
111 "coord": "androidx.lifecycle:lifecycle-common:2.3.1", string
127 "coord": "androidx.privacysandbox.tools:tools-apigenerator:1.0.0-alpha06", string
164 "coord": "androidx.privacysandbox.tools:tools-apipackager:1.0.0-alpha06", string
199 "coord": "androidx.privacysandbox.tools:tools-core:1.0.0-alpha06", string
228 "coord": "androidx.privacysandbox.tools:tools:1.0.0-alpha06", string
[all …]
/external/angle/src/libANGLE/
DContext_gles_1_0.cpp194 void Context::getTexGenfv(GLenum coord, GLenum pname, GLfloat *params) in getTexGenfv()
199 void Context::getTexGeniv(GLenum coord, GLenum pname, GLint *params) in getTexGeniv()
204 void Context::getTexGenxv(GLenum coord, GLenum pname, GLfixed *params) in getTexGenxv()
209 void Context::texGenf(GLenum coord, GLenum pname, GLfloat param) in texGenf()
214 void Context::texGenfv(GLenum coord, GLenum pname, const GLfloat *params) in texGenfv()
219 void Context::texGeni(GLenum coord, GLenum pname, GLint param) in texGeni()
224 void Context::texGeniv(GLenum coord, GLenum pname, const GLint *params) in texGeniv()
229 void Context::texGenx(GLenum coord, GLenum pname, GLfixed param) in texGenx()
234 void Context::texGenxv(GLenum coord, GLenum pname, const GLint *params) in texGenxv()
/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/mesa3d/src/amd/common/
Dac_nir_lower_image_opcodes_cdna.c49 static nir_def *lower_image_coords(nir_builder *b, nir_def *desc, nir_def *coord, in lower_image_coords()
108 nir_def *desc, nir_def *coord, in emulated_image_load()
123 static void emulated_image_store(nir_builder *b, nir_def *desc, nir_def *coord, in emulated_image_store()
158 nir_def *coord[3] = {0}; in emulated_tex_level_zero() local
379 nir_def *coord = NULL, *desc = NULL, *sampler_desc = NULL, *result = NULL; in lower_image_opcodes() local
/external/deqp/modules/gles3/functional/
Des3fFragDepthTests.cpp198 const float coord[] = {0.0f, 0.0f, 0.0f, 1.0f, 1.0f, 0.0f, 1.0f, 1.0f}; in iterate() local
316 const float coord[] = {0.0f, 0.0f, 0.0f, 1.0f, 1.0f, 0.0f, 1.0f, 1.0f}; in iterate() local
401 static float evalConstDepth(const Vec2 &coord) in evalConstDepth()
406 static float evalDynamicDepth(const Vec2 &coord) in evalDynamicDepth()
410 static float evalNoWrite(const Vec2 &coord) in evalNoWrite()
415 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
331 const float coord[] = {0.0f, 0.0f, 0.0f, 1.0f, 1.0f, 0.0f, 1.0f, 1.0f}; in iterate() local
420 static float evalConstDepth(const Vec2 &coord) in evalConstDepth()
425 static float evalDynamicDepth(const Vec2 &coord) in evalDynamicDepth()
429 static float evalNoWrite(const Vec2 &coord) in evalNoWrite()
434 static float evalDynamicConditionalDepth(const Vec2 &coord) in evalDynamicConditionalDepth()
/external/armnn/src/backends/reference/workloads/
DMirrorPad.cpp24 std::vector<unsigned int> coord(shape.GetNumDimensions()); in IndexToCoord() local
37 … unsigned int CoordToIndex(const armnn::TensorShape& shape, const std::vector<unsigned int>& coord) in CoordToIndex()
97 const std::vector<unsigned int> coord = IndexToCoord(outputShape, idx); in MirrorPad() local
/external/mesa3d/src/gallium/drivers/zink/
Dzink_lower_cubemap_to_array.c91 evaluate_face_x(nir_builder *b, coord_t *coord) in evaluate_face_x()
108 evaluate_face_y(nir_builder *b, coord_t *coord) in evaluate_face_y()
125 evaluate_face_z(nir_builder *b, coord_t *coord) in evaluate_face_z()
142 create_array_tex_from_cube_tex(nir_builder *b, nir_tex_instr *tex, nir_def *coord, nir_texop op) in create_array_tex_from_cube_tex()
305 handle_cube_gather(nir_builder *b, nir_tex_instr *tex, nir_def *coord) in handle_cube_gather()
346 lower_cube_coords(nir_builder *b, nir_def *coord, bool is_array) in lower_cube_coords()
468 nir_def *coord = tex->src[coord_index].src.ssa; in lower_cube_sample() local
/external/angle/src/compiler/translator/msl/
DProgramPrelude.cpp3065 const TType &coord = func.getParam(1)->getType(); in BuildFuncToEmitter() local
3164 const TType &coord = func.getParam(1)->getType(); in BuildFuncToEmitter() local
3214 const TType &coord = func.getParam(1)->getType(); in BuildFuncToEmitter() local
3264 const TType &coord = func.getParam(1)->getType(); in BuildFuncToEmitter() local
3301 const TType &coord = func.getParam(1)->getType(); in BuildFuncToEmitter() local
3333 const TType &coord = func.getParam(1)->getType(); in BuildFuncToEmitter() local
3365 const TType &coord = func.getParam(1)->getType(); in BuildFuncToEmitter() local
/external/mesa3d/src/asahi/lib/
Dagx_nir_lower_texture.c110 coords_for_buffer_texture(nir_builder *b, nir_def *coord) in coords_for_buffer_texture()
131 nir_def *coord = nir_steal_tex_src(tex, nir_tex_src_coord); in lower_buffer_texture() local
202 nir_def *coord = nir_steal_tex_src(tex, nir_tex_src_coord); in lower_regular_texture() local
449 nir_def *coord = intr->src[1].ssa; in image_texel_address() local
480 nir_def *coord = nir_channel(b, coord_vector, 0); in lower_buffer_image() local
493 nir_def *coord = intr->src[1].ssa; in lower_1d_image() local
/external/deqp/framework/common/
DtcuTexLookupVerifier.cpp560 const PrecType &prec, const Vec2 &coord, const int coordZ, in isNearestSampleResultValid()
594 … const PrecType &prec, const Vec3 &coord, const Vector<ScalarType, 4> &result) in isNearestSampleResultValid()
683 const Vec2 &coord, const int coordZ, const Vec4 &result) in isLinearSampleResultValid()
751 … const LookupPrecision &prec, const Vec3 &coord, const Vec4 &result) in isLinearSampleResultValid()
835 … const LookupPrecision &prec, const float coord, const int coordY, in isNearestMipmapLinearSampleResultValid()
869 … const LookupPrecision &prec, const Vec2 &coord, const int coordZ, in isNearestMipmapLinearSampleResultValid()
921 … const LookupPrecision &prec, const Vec3 &coord, const Vec2 &fBounds, in isNearestMipmapLinearSampleResultValid()
1069 … const LookupPrecision &prec, const Vec2 &coord, const int coordZ, in isLinearMipmapLinearSampleResultValid()
1174 … const LookupPrecision &prec, const Vec3 &coord, const Vec2 &fBounds, in isLinearMipmapLinearSampleResultValid()
1318 const Vec2 &coord, const int coordZ, const Vec4 &result) in isLevelSampleResultValid()
[all …]
/external/mesa3d/src/microsoft/compiler/
Ddxil_nir_lower_int_cubemaps.c110 evaluate_face_x(nir_builder *b, coord_t *coord) in evaluate_face_x()
129 evaluate_face_y(nir_builder *b, coord_t *coord) in evaluate_face_y()
148 evaluate_face_z(nir_builder *b, coord_t *coord) in evaluate_face_z()
167 create_array_tex_from_cube_tex(nir_builder *b, nir_tex_instr *tex, nir_def *coord, nir_texop op) in create_array_tex_from_cube_tex()
316 handle_cube_gather(nir_builder *b, nir_tex_instr *tex, nir_def *coord) in handle_cube_gather()
356 lower_cube_coords(nir_builder *b, nir_def *coord, bool is_array, bool is_image) in lower_cube_coords()
405 nir_def *coord = tex->src[coord_index].src.ssa; in lower_cube_sample() local
/external/cronet/third_party/quic_trace/src/tools/render/
Drectangle_renderer.cc113 GlVertexArrayAttrib coord(shader_, "coord"); in Render() local
134 GlVertexArrayAttrib coord(shader_, "coord"); in Render() 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()
/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()
/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()

12345678910>>...13