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

1 2 3

  /external/vulkan-validation-layers/libs/glm/detail/
glm.cpp 47 template struct tvec1<float32, lowp>;
59 template struct tvec1<float32, mediump>;
71 template struct tvec1<float32, highp>;
83 template struct tvec2<float32, lowp>;
94 template struct tvec2<float32, mediump>;
105 template struct tvec2<float32, highp>;
117 template struct tvec3<float32, lowp>;
128 template struct tvec3<float32, mediump>;
139 template struct tvec3<float32, highp>;
151 template struct tvec4<float32, lowp>
    [all...]
type_float.hpp 37 typedef float float32; typedef in namespace:glm::detail
81 typedef float float32; typedef in namespace:glm
87 GLM_STATIC_ASSERT(sizeof(glm::float32) == 4, "float32 size isn't 4 bytes on this platform");
  /external/deqp/external/vulkancts/framework/vulkan/
vkTypeUtil.hpp 37 v.color.float32[0] = r;
38 v.color.float32[1] = g;
39 v.color.float32[2] = b;
40 v.color.float32[3] = a;
57 v.color.float32[0] = color[0];
58 v.color.float32[1] = color[1];
59 v.color.float32[2] = color[2];
60 v.color.float32[3] = color[3];
  /external/v8/test/mjsunit/wasm/
verify-function-simple.js 14 5, 0, // local float32 count
32 4, 0, // local float32 count
  /external/opencv3/samples/python2/
stereo_match.py 54 disp = stereo.compute(imgL, imgR).astype(np.float32) / 16.0
59 Q = np.float32([[1, 0, 0, -0.5*w],
deconvolution.py 46 w = np.minimum(np.float32(dist)/d, 1.0)
50 kern = np.ones((1, d), np.float32)
52 A = np.float32([[c, -s, 0], [s, c, 0]])
61 kern = np.float32(kern) / 255.0
82 img = np.float32(img)/255.0
digits_video.py 71 c1 = np.float32([m['m10'], m['m01']]) / m['m00']
72 c0 = np.float32([SZ/2, SZ/2])
74 A = np.zeros((2, 3), np.float32)
fitline.py 41 p1 = np.float32(p1)
67 vx, vy, cx, cy = cv2.fitLine(np.float32(points), func, 0, 0.01, 0.01)
letter_recog.py 32 a = np.loadtxt(fn, np.float32, delimiter=',', converters={ 0 : lambda ch : ord(ch)-ord('A') })
47 new_samples = np.zeros((sample_n * self.class_n, var_n+1), np.float32)
71 return np.float32( [self.model.predict(s) for s in samples] )
136 self.model.train(samples, np.float32(new_responses), None, params = params)
lk_track.py 52 p0 = np.float32([tr[-1] for tr in self.tracks]).reshape(-1, 1, 2)
77 for x, y in np.float32(p).reshape(-1, 2):
plane_ar.py 32 ar_verts = np.float32([[0, 0, 0], [0, 1, 0], [1, 1, 0], [1, 0, 0],
84 quad_3d = np.float32([[x0, y0, 0], [x1, y0, 0], [x1, y1, 0], [x0, y1, 0]])
calibrate.py 36 pattern_points = np.zeros( (np.prod(pattern_size), 3), np.float32 )
turing.py 35 a = np.zeros((h, w), np.float32)
digits.py 64 M = np.float32([[1, skew, -0.5*SZ*skew], [0, 1, 0]])
124 return np.float32(digits).reshape(-1, SZ*SZ) / 255.0
146 return np.float32(samples)
find_obj.py 65 p1 = np.float32([kp.pt for kp in mkp1])
66 p2 = np.float32([kp.pt for kp in mkp2])
79 corners = np.float32([[0, 0], [w1, 0], [w1, h1], [0, h1]])
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineClearUtil.cpp 125 clearValue.color.float32[0] = defaultColor.x();
126 clearValue.color.float32[1] = defaultColor.y();
127 clearValue.color.float32[2] = defaultColor.z();
128 clearValue.color.float32[3] = defaultColor.w();
  /prebuilts/misc/common/swig/include/2.0.11/go/
typemaps.i 90 INPUT_TYPEMAP(float, float32);
192 OUTPUT_TYPEMAP(float, float32);
289 INOUT_TYPEMAP(float, float32);
  /external/webrtc/webrtc/base/
macconversion.cc 77 Float32 float32; local
79 static_cast<void*>(&float32));
80 if (converted) *i = static_cast<int>(float32);
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
typedefs.h 228 /* define float32/64, float_t */
231 typedef float float32; typedef
246 #if defined(FLOAT32)
247 typedef float32 float_t;
  /external/vulkan-validation-layers/libs/glm/
fwd.hpp 1455 typedef lowp_float32 float32; typedef in namespace:glm
1481 typedef mediump_float32 float32; typedef in namespace:glm
1507 typedef highp_float32 float32; typedef in namespace:glm
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/test/delay_tool/
parse_delay_file.m 55 clock = fread(fid, 1, '*float32');
58 % read int32 + float32 in one go
71 clock = fread(fid, 1, '*float32');
  /external/v8/test/cctest/compiler/
test-run-native-calls.cc 22 typedef float float32; typedef in namespace:v8::internal::compiler::__anon24356
157 // TODO(titzer): hack. float32 occupies 8 bytes on stack.
345 Node* MakeConstant(RawMachineAssembler& raw, float32 value) {
400 void ArgsBuffer<float32>::Mutate() {
405 output = std::numeric_limits<float32>::quiet_NaN();
876 ArgsBuffer<float32>::Sig sig(2);
888 RunSelect<float32, 0>(desc);
889 RunSelect<float32, 1>(desc);
932 ArgsBuffer<float32>::Sig sig(count);
934 RunSelect<float32, 0>(desc)
    [all...]
  /cts/apps/CameraITS/pymodules/its/
image.py 240 return ((y.astype(numpy.float32) / 255.0).reshape(h, w, 1),
241 (u.astype(numpy.float32) / 255.0).reshape(h/2, w/2, 1),
242 (v.astype(numpy.float32) / 255.0).reshape(h/2, w/2, 1))
253 img = img.astype(numpy.float32).reshape(h,w) / white_level
417 flt = numpy.empty([h, w, 3], dtype=numpy.float32)
422 return rgb.astype(numpy.float32) / 255.0
503 return ((y.astype(numpy.float32) / 255.0).reshape(h, w, 1),
504 (u.astype(numpy.float32) / 255.0).reshape(h/2, w/2, 1),
505 (v.astype(numpy.float32) / 255.0).reshape(h/2, w/2, 1))
552 return (lut[(img * m).astype(numpy.uint16)] / m).astype(numpy.float32)
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
screen_finder.py 180 lines = cv_util.ExtendLines(np.float32(hlines[0]), 10000) \
196 corners = np.empty((4, 2), np.float32)
242 intersections = np.empty((0, 3), np.float32)
250 point = np.float32(point)
275 min_dist = np.zeros(4, np.float32)
326 corners = np.empty((0, 2), np.float32)
362 sorted_corners = np.empty((4, 2), np.float32)
616 real_corners = np.empty((4, 2), np.float32)
761 self._avg_corners = np.asfarray(corners, np.float32)
801 target = np.zeros((4, 2), np.float32)
    [all...]
  /external/v8/src/wasm/
encoder.cc 207 uint16_t float32 = 0; local
217 float32++;
224 e->local_float32_count_ = float32;
226 float64 = param + int32 + int64 + float32;
227 float32 = param + int32 + int64;
240 var_index[i] = float32++;

Completed in 1382 milliseconds

1 2 3