Home
last modified time | relevance | path

Searched refs:b_in (Results 1 – 7 of 7) sorted by relevance

/external/tensorflow/tensorflow/core/kernels/image/
Dcrop_and_resize_op_gpu.cu.cc61 const int32 b_in = box_ind_ptr[b]; in CropAndResizeKernel() local
62 if (b_in < 0 || b_in >= batch) { in CropAndResizeKernel()
98 image_ptr[((b_in * image_height + top_y_index) * image_width + in CropAndResizeKernel()
103 image_ptr[((b_in * image_height + top_y_index) * image_width + in CropAndResizeKernel()
108 image_ptr[((b_in * image_height + bottom_y_index) * image_width + in CropAndResizeKernel()
113 image_ptr[((b_in * image_height + bottom_y_index) * image_width + in CropAndResizeKernel()
124 image_ptr[((b_in * image_height + closest_y_index) * image_width + in CropAndResizeKernel()
154 const int32 b_in = box_ind_ptr[b]; in CropAndResizeBackpropImageKernel() local
155 if (b_in < 0 || b_in >= batch) { in CropAndResizeBackpropImageKernel()
190 ((b_in * image_height + top_y_index) * image_width + in CropAndResizeBackpropImageKernel()
[all …]
Dcrop_and_resize_op.cc244 const int32 b_in = box_index(b); in operator ()() local
245 if (!FastBoundsCheck(b_in, batch_size)) { in operator ()()
290 image(b_in, top_y_index, left_x_index, d))); in operator ()()
292 image(b_in, top_y_index, right_x_index, d))); in operator ()()
294 image(b_in, bottom_y_index, left_x_index, d))); in operator ()()
296 image(b_in, bottom_y_index, right_x_index, d))); in operator ()()
318 image(b_in, closest_y_index, closest_x_index, d)); in operator ()()
470 const int32 b_in = box_index(b); in operator ()() local
471 if (!FastBoundsCheck(b_in, batch_size)) { in operator ()()
509 grads_image(b_in, top_y_index, left_x_index, d) += in operator ()()
[all …]
/external/libevent/sample/
Dle-proxy.c162 struct bufferevent *b_out, *b_in; in accept_cb() local
165 b_in = bufferevent_socket_new(base, fd, in accept_cb()
178 assert(b_in && b_out); in accept_cb()
184 bufferevent_free(b_in); in accept_cb()
197 bufferevent_free(b_in); in accept_cb()
203 bufferevent_setcb(b_in, readcb, NULL, eventcb, b_out); in accept_cb()
204 bufferevent_setcb(b_out, readcb, NULL, eventcb, b_in); in accept_cb()
206 bufferevent_enable(b_in, EV_READ|EV_WRITE); in accept_cb()
/external/tensorflow/tensorflow/core/graph/
Doptimizer_cse.cc261 gtl::InlinedVector<std::pair<const Node*, int>, 4> b_in(N_in); in Equivalent() local
263 FillInputs(b, &b_control_edges, &b_in); in Equivalent()
264 if (a_in != b_in) return false; in Equivalent()
/external/rust/crates/uuid/src/
Dlib.rs1048 let b_in: crate::Bytes = [ in test_bytes_roundtrip() localVariable
1053 let u = Uuid::from_slice(&b_in).unwrap(); in test_bytes_roundtrip()
1057 assert_eq!(&b_in, b_out); in test_bytes_roundtrip()
/external/tensorflow/tensorflow/core/grappler/optimizers/
Darithmetic_optimizer_test.cc3825 auto b_in = in TEST_F() local
3831 auto b = ops::PlaceholderWithDefault(s.WithOpName("b"), b_in, in TEST_F()
4034 auto b_in = in TEST_F() local
4040 auto b = ops::PlaceholderWithDefault(s.WithOpName("b"), b_in, in TEST_F()
/external/tensorflow/tensorflow/core/common_runtime/
Dmkl_layout_pass.cc2954 gtl::InlinedVector<std::pair<Node*, int>, 4> b_in(B_in); in CheckForNodeMerge() local
2955 FillInputs(b, &b_control_edges, &b_in); in CheckForNodeMerge()