Searched refs:conversion (Results 1 - 25 of 123) sorted by relevance

12345

/external/compiler-rt/test/builtins/timing/
H A Dtiming.h8 static double conversion = 0.0; local
10 if( 0.0 == conversion )
23 conversion = (double) freq * (1e-9 * (double) info.numer / (double) info.denom);
26 return (double) rawTime * conversion;
/external/tensorflow/tensorflow/contrib/py2tf/impl/
H A Dconversion_test.py15 """Tests for conversion module."""
23 from tensorflow.contrib.py2tf.impl import conversion namespace
31 conversion_map = conversion.ConversionMap(True, (), (), None)
32 conversion.entity_to_graph('dummy', conversion_map, None, None)
39 conversion_map = conversion.ConversionMap(True, (), (), None)
40 ast, new_name = conversion.entity_to_graph(f, conversion_map, None, None)
52 conversion_map = conversion.ConversionMap(True, (), (), None)
53 conversion.entity_to_graph(f, conversion_map, None, None)
H A Dapi.py27 from tensorflow.contrib.py2tf.impl import conversion namespace
41 Graph-ready functions are assumed to not need any conversion.
175 conversion_map = conversion.ConversionMap(
180 _, name = conversion.entity_to_graph(e, conversion_map, arg_values, arg_types)
222 conversion_map = conversion.ConversionMap(
227 conversion.entity_to_graph(e, conversion_map, arg_values, arg_types)
/external/autotest/client/deps/glbench/src/
H A Dyuv2rgb_3.glslf33 * This is a planar YUV to RGB conversion shader that uses separate samplers to
42 uniform mat4 conversion;
53 * This does the colorspace conversion from Y'UV to RGB as a matrix
61 mat4 conversion = mat4(
68 gl_FragColor = conversion * channels;
H A Dyuv2rgb_4.glslf33 * This is a semiplanar YUV to RGB conversion shader that uses separate
41 uniform mat4 conversion;
51 * This does the colorspace conversion from Y'UV to RGB as a matrix
58 mat4 conversion = mat4( 1.0, 1.0, 1.0, 0.0,
64 gl_FragColor = conversion * channels;
H A Dyuv2rgb_2.glslf33 * This is an optimized version of the YUV to RGB conversion shader. This
47 uniform mat4 conversion;
62 * This does the colorspace conversion from Y'UV to RGB as a matrix
68 mat4 conversion = mat4( 1.0, 1.0, 1.0, 0.0,
74 gl_FragColor = conversion * channels;
H A Dyuv2rgb_1.glslf33 * This is a conversion of a conversion of a cg shader from Chrome:
58 uniform mat4 conversion;
174 * This does the colorspace conversion from Y'UV to RGB as a matrix
180 mat4 conversion = mat4( 1.0, 1.0, 1.0, 0.0,
186 gl_FragColor = conversion * channels;
/external/libnl/python/netlink/
H A Dutil.py130 def convert_field(self, value, conversion):
131 if conversion == 'r':
133 elif conversion == 's':
135 elif conversion == 'k':
137 elif conversion == 'b':
139 elif conversion is None:
142 raise ValueError('Unknown converion specifier {0!s}'.format(conversion))
/external/e2fsprogs/intl/
H A Dprintf-parse.h48 char conversion; /* d i o u x X f e E g G c s p n U % but not C S */ member in struct:__anon5664
H A Dwprintf-parse.h48 wchar_t conversion; /* d i o u x X f e E g G c s p n U % but not C S */ member in struct:__anon5666
/external/python/cpython3/Lib/
H A Dstring.py199 for literal_text, field_name, format_spec, conversion in \
233 # do any conversion on the resulting object
234 obj = self.convert_field(obj, conversion)
263 def convert_field(self, value, conversion):
264 # do any conversion on the resulting object
265 if conversion is None:
267 elif conversion == 's':
269 elif conversion == 'r':
271 elif conversion == 'a':
273 raise ValueError("Unknown conversion specifie
[all...]
/external/tinyxml/
H A DAndroid.mk17 -Wno-undefined-bool-conversion \
/external/clang/test/Sema/
H A DPR16678.c152 #error Unexpected signedness or conversion behavior
/external/iptables/extensions/
H A DAndroid.mk18 # libxt_recent.c:202:11: error: address of array 'info->name' will always evaluate to 'true' [-Werror,-Wpointer-bool-conversion]
24 -Wno-pointer-bool-conversion \
/external/curl/docs/cmdline-opts/
H A Dpost301.d9 in web browsers, so curl does the conversion by default to maintain
H A Dpost302.d9 in web browsers, so curl does the conversion by default to maintain
H A Dpost303.d9 in web browsers, so curl does the conversion by default to maintain
/external/icu/icu4c/source/samples/
H A Dreadme.txt14 case - demonstrates how to do Unicode case conversion in C and C++.
38 ucnv - demonstrates the use of ICU codepage conversion
/external/mesa3d/src/mesa/state_tracker/
H A Dst_pbo.c391 enum st_pbo_conversion conversion)
393 switch (conversion) {
408 enum st_pbo_conversion conversion)
526 build_conversion(ureg, &temp1, conversion);
539 build_conversion(ureg, &temp0, conversion);
572 enum st_pbo_conversion conversion = get_pbo_conversion(src_format, dst_format); local
574 if (!st->pbo.upload_fs[conversion])
575 st->pbo.upload_fs[conversion] = create_fs(st, false, 0, conversion);
577 return st->pbo.upload_fs[conversion];
390 build_conversion(struct ureg_program *ureg, const struct ureg_dst *temp, enum st_pbo_conversion conversion) argument
407 create_fs(struct st_context *st, bool download, enum pipe_texture_target target, enum st_pbo_conversion conversion) argument
588 enum st_pbo_conversion conversion = get_pbo_conversion(src_format, dst_format); local
[all...]
/external/python/cpython2/Objects/stringlib/
H A Dstring_format.h636 STRINGLIB_CHAR *conversion)
645 *conversion = '\0';
663 /* we have a format specifier and/or a conversion */
671 /* see if there's a conversion specifier */
676 "end of format while looking for conversion "
680 *conversion = *(format_spec->ptr++);
694 /* end of string, there's no format_spec or conversion */
725 SubString *format_spec, STRINGLIB_CHAR *conversion,
739 *conversion = '\0';
825 if (parse_field(&s, field_name, format_spec, conversion)
635 parse_field(SubString *str, SubString *field_name, SubString *format_spec, STRINGLIB_CHAR *conversion) argument
723 MarkupIterator_next(MarkupIterator *self, SubString *literal, int *field_present, SubString *field_name, SubString *format_spec, STRINGLIB_CHAR *conversion, int *format_spec_needs_expanding) argument
843 do_conversion(PyObject *obj, STRINGLIB_CHAR conversion) argument
882 output_markup(SubString *field_name, SubString *format_spec, int format_spec_needs_expanding, STRINGLIB_CHAR conversion, OutputString *output, PyObject *args, PyObject *kwargs, int recursion_depth, AutoNumber *auto_number) argument
955 STRINGLIB_CHAR conversion; local
1084 STRINGLIB_CHAR conversion; local
[all...]
/external/python/cpython3/Objects/stringlib/
H A Dunicode_format.h546 int *format_spec_needs_expanding, Py_UCS4 *conversion)
555 *conversion = '\0';
585 /* we have a format specifier and/or a conversion */
588 /* see if there's a conversion specifier */
593 "end of string while looking for conversion "
597 *conversion = PyUnicode_READ_CHAR(str->str, str->start++);
605 "expected ':' after conversion specifier");
668 SubString *format_spec, Py_UCS4 *conversion,
681 *conversion = '\0';
748 format_spec_needs_expanding, conversion))
545 parse_field(SubString *str, SubString *field_name, SubString *format_spec, int *format_spec_needs_expanding, Py_UCS4 *conversion) argument
666 MarkupIterator_next(MarkupIterator *self, SubString *literal, int *field_present, SubString *field_name, SubString *format_spec, Py_UCS4 *conversion, int *format_spec_needs_expanding) argument
756 do_conversion(PyObject *obj, Py_UCS4 conversion) argument
797 output_markup(SubString *field_name, SubString *format_spec, int format_spec_needs_expanding, Py_UCS4 conversion, _PyUnicodeWriter *writer, PyObject *args, PyObject *kwargs, int recursion_depth, AutoNumber *auto_number) argument
869 Py_UCS4 conversion; local
996 Py_UCS4 conversion; local
[all...]
/external/python/cpython2/Lib/
H A Dstring.py36 # Case conversion helpers
571 for literal_text, field_name, format_spec, conversion in \
588 # do any conversion on the resulting object
589 obj = self.convert_field(obj, conversion)
616 def convert_field(self, value, conversion):
617 # do any conversion on the resulting object
618 if conversion is None:
620 elif conversion == 's':
622 elif conversion == 'r':
624 raise ValueError("Unknown conversion specifie
[all...]
/external/iproute2/ip/
H A DAndroid.mk28 -Wno-int-conversion \
/external/iputils/
H A DAndroid.mk6 -Wno-constant-conversion \
/external/iw/
H A DAndroid.mk21 LOCAL_CLANG_CFLAGS += -Wno-enum-conversion

Completed in 695 milliseconds

12345