HomeSort by relevance Sort by last modified time
    Searched full:layer (Results 126 - 150 of 6628) sorted by null

1 2 3 4 56 7 8 91011>>

  /packages/apps/Contacts/src/com/android/contacts/widget/
AlphaTouchInterceptorOverlay.java 27 * A View that other Views can use to create a touch-interceptor layer above
28 * their other sub-views. This layer can be enabled and disabled; when enabled,
31 * Also supports an alpha layer to dim the content underneath. By default, the
32 * alpha layer is the same View as the touch-interceptor layer. However, for
35 * layer). In this case, you can specify the View to use as the alpha layer via
37 * the alpha-layer with respect to your other sub-views.
60 * Set the View that the overlay will use as its alpha-layer. If
62 * some child views need to appear above the alpha-layer but belo
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/
run_extra_loader_tests.sh 32 # Copy the test layer into the implicit directory.
35 echo "unable to install test layer" >&2
39 # Test without setting enable environment variable. The loader should not load the layer.
44 echo "test layer detected but enable environment variable was not set" >&2
48 # Test enable environment variable with good value. The loader should load the layer.
54 echo "test layer not detected" >&2
58 # Test enable environment variable with bad value. The loader should not load the layer.
64 echo "test layer detected but enable environment variable was set to wrong value" >&2
68 # Test disable environment variable. The loader should not load the layer.
74 echo "test layer detected but disable environment variable was set" >&
    [all...]
  /external/tensorflow/tensorflow/python/layers/
convolutional_test.py 67 layer = conv_layers.Conv2D(32, [3, 3], activation=nn_ops.relu)
68 output = layer.apply(images)
72 self.assertListEqual(layer.kernel.get_shape().as_list(), [3, 3, 4, 32])
73 self.assertListEqual(layer.bias.get_shape().as_list(), [32])
85 layer = conv_layers.Conv2D(32, 3)
86 output = layer.apply(images)
89 self.assertListEqual(layer.kernel.get_shape().as_list(), [3, 3, 4, 32])
90 self.assertListEqual(layer.bias.get_shape().as_list(), [32])
95 layer = conv_layers.Conv2D(32, [3, 3], data_format='channels_first')
96 output = layer.apply(images
    [all...]
network.py 36 class InputLayer(base.Layer):
37 """Layer to be used as an entry point into a Network (a graph of layers).
43 It is generally recommend to use the functional layer API via `Input`,
51 input_tensor: Optional tensor to use as layer input
55 name: Name of the layer (string).
83 # In eager mode, create a temporary placeholder to call the layer on.
89 # In graph mode, create a graph placeholder to call the layer on.
150 name: An optional name string for the layer.
157 tensor: Optional existing tensor to wrap into the `Input` layer.
158 If set, the layer will not create a placeholder tensor
    [all...]
  /hardware/intel/img/hwcomposer/moorefield_hdmi/common/base/
HwcLayerList.cpp 51 hwc_layer_1_t& layer = *(hwcLayer->getLayer()); local
53 // if layer was forced to use FB
55 VLOGTRACE("layer was forced to use HWC_FRAMEBUFFER");
59 // check layer flags
60 if (layer.flags & HWC_SKIP_LAYER) {
61 VLOGTRACE("plane type %d: (skip layer flag was set)", planeType);
65 if (layer.handle == 0) {
72 WLOGTRACE("not a composer layer");
76 // check layer transform
97 // check layer blendin
117 hwc_layer_1_t& layer = *(hwcLayer->getLayer()); local
177 hwc_layer_1_t& layer = *(hwcLayer->getLayer()); local
265 hwc_layer_1_t *layer = &mList->hwLayers[i]; local
730 ZOrderLayer *layer = new ZOrderLayer; local
    [all...]
HwcLayer.cpp 55 HwcLayer::HwcLayer(int index, hwc_layer_1_t *layer)
59 mLayer(layer),
133 // Upper layer HWComposer will reset the compositionType automatically.
236 bool HwcLayer::update(hwc_layer_1_t *layer)
238 // update layer
239 mLayer = layer;
242 // if not a FB layer & a plane was attached update plane's data buffer
244 mPlane->setPosition(layer->displayFrame.left,
245 layer->displayFrame.top,
246 layer->displayFrame.right - layer->displayFrame.left
    [all...]
  /external/tensorflow/tensorflow/python/keras/_impl/keras/layers/
recurrent_test.py 51 layer = keras.layers.RNN(cell) variable in class:RNNTest.test_minimal_rnn_cell_non_layer.MinimalRNNCell
52 y = layer(x)
61 layer = keras.layers.RNN(cells) variable in class:RNNTest.test_minimal_rnn_cell_non_layer.MinimalRNNCell
62 y = layer(x)
89 layer = keras.layers.RNN(cell) variable in class:RNNTest.test_minimal_rnn_cell_non_layer_multiple_states.MinimalRNNCell
90 y = layer(x)
99 layer = keras.layers.RNN(cells) variable in class:RNNTest.test_minimal_rnn_cell_non_layer_multiple_states.MinimalRNNCell
100 assert layer.cell.state_size == (32, 32, 16, 16, 8, 8)
101 y = layer(x)
108 class MinimalRNNCell(keras.layers.Layer)
140 layer = keras.layers.RNN(cell) variable in class:RNNTest.test_minimal_rnn_cell_layer.MinimalRNNCell
163 layer = keras.layers.RNN(cells) variable in class:RNNTest.test_minimal_rnn_cell_layer.MinimalRNNCell
230 layer = keras.layers.RNN(cell) variable in class:RNNTest.test_rnn_cell_with_constants_layer.RNNCellWithConstants
270 layer = keras.layers.recurrent.RNN(cells) variable in class:RNNTest.test_rnn_cell_with_constants_layer.RNNCellWithConstants
343 layer = keras.layers.RNN(cell) variable in class:RNNTest.test_rnn_cell_with_constants_layer_passing_initial_state.RNNCellWithConstants
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_svc_layercontext.h 25 int spatial_layer_target_bandwidth; // Target for the spatial layer.
75 // Layer context used for rate control in one pass temporal CBR mode or
81 // Frame flags and buffer indexes for each spatial layer, set by the
108 // Initialize layer context data from init_config().
111 // Update the layer context from a change_config() call.
116 // for the current temporal layer.
119 // Update framerate-related quantities for the current spatial layer.
123 // Prior to encoding the frame, set the layer context, for the current layer
127 // Save the layer context after encoding the frame
    [all...]
  /frameworks/native/services/surfaceflinger/
LayerVector.cpp 18 #include "Layer.h"
25 : SortedVector<sp<Layer>>(rhs), mStateSet(stateSet) {}
37 // sort layers per layer-stack, then by z-order and finally by sequence
38 const auto& l = *reinterpret_cast<const sp<Layer>*>(lhs);
39 const auto& r = *reinterpret_cast<const sp<Layer>*>(rhs);
64 const auto& layer = (*this)[i]; local
65 auto& state = (stateSet == StateSet::Current) ? layer->getCurrentState()
66 : layer->getDrawingState();
70 layer->traverseInZOrder(stateSet, visitor);
76 const auto& layer = (*this)[i] local
    [all...]
LayerRejecter.h 20 #include "Layer.h"
26 LayerRejecter(Layer::State &front,
27 Layer::State &current,
37 Layer::State &mFront;
38 Layer::State &mCurrent;
LayerVector.h 26 class Layer;
33 class LayerVector : public SortedVector<sp<Layer>> {
47 // Sorts layer by layer-stack, Z order, and finally creation order (sequence).
50 using Visitor = std::function<void(Layer*)>;
  /external/webrtc/webrtc/modules/video_coding/codecs/vp9/
screenshare_layers.cc 33 // The upper layer is always the layer we spill frames
35 // a max limit is not allowed. The top layer bitrate is
71 settings.layer[layer_id].ref_buf1 = layer_id;
76 settings.layer[layer_id].upd_buf = layer_id;
78 // Since the above loop does not iterate over the last layer
79 // the reference of the last layer has to be set after the loop,
83 settings.layer[num_layers_ - 1].ref_buf1 = num_layers_ - 1;
85 settings.layer[num_layers_ - 1].upd_buf = num_layers_ - 1;
  /frameworks/base/libs/hwui/
DeferredLayerUpdater.h 29 #include "Layer.h"
38 // Container to hold the properties a layer should be set to at the start
42 // Note that DeferredLayerUpdater assumes it is taking ownership of the layer
44 typedef std::function<Layer*(RenderState& renderState, uint32_t layerWidth,
49 Layer::Api layerApi);
96 Layer* backingLayer() { return mLayer; }
104 Layer::Api getBackingLayerApi() { return mLayerApi; }
121 Layer* mLayer;
122 Layer::Api mLayerApi;
  /packages/services/Car/car-lib/src/android/car/vms/
IVmsSubscriberService.aidl 30 * layer is made.
36 * Adds a subscriber to a VMS layer.
40 in VmsLayer layer) = 1;
50 * Adds a subscriber to a VMS layer from a specific publisher.
54 in VmsLayer layer,
66    * Removes a subscriber to a VMS layer.
70 in VmsLayer layer) = 5;
81 * Removes a subscriber to a VMS layer from a specific publisher.
85 in VmsLayer layer,
  /external/swiftshader/src/OpenGL/libEGL/
OSXUtils.mm 43 CALayer *layer = reinterpret_cast<CALayer*>(object);
44 width = [layer bounds].size.width * layer.contentsScale;
45 height = [layer bounds].size.height * layer.contentsScale;
  /hardware/interfaces/automotive/vehicle/2.0/default/common/include/vhal_v2_0/
VmsUtils.h 48 VmsLayer layer; member in struct:android::hardware::automotive::vehicle::V2_0::vms::VmsLayerAndPublisher
53 // are acceptable for a given layer.
55 VmsLayer layer; member in struct:android::hardware::automotive::vehicle::V2_0::vms::VmsAssociatedLayer
59 // A VmsLayerOffering refers to a single layer that can be published, along with
62 VmsLayerOffering(VmsLayer layer, std::vector<VmsLayer> dependencies)
63 : layer(layer), dependencies(dependencies) {}
64 VmsLayerOffering(VmsLayer layer) : layer(layer), dependencies() {
65 VmsLayer layer; member in struct:android::hardware::automotive::vehicle::V2_0::vms::VmsLayerOffering
    [all...]
  /hardware/qcom/display/msm8084/libhwcomposer/
hwc_mdpcomp.cpp 205 hwc_layer_1_t* layer = &(list->hwLayers[index]); local
208 layer->compositionType = HWC_OVERLAY;
209 layer->hints |= HWC_HINT_CLEAR_FB;
211 /* Drop the layer when its already present in FB OR when it lies
214 layer->compositionType = HWC_OVERLAY;
257 // populate layer and MDP maps
292 hwc_layer_1_t const* layer = &list->hwLayers[i]; local
293 if(curFrame.isFBComposed[i] && layerUpdating(layer)){
300 bool MDPComp::isSupportedForMDPComp(hwc_context_t *ctx, hwc_layer_1_t* layer) {
301 private_handle_t *hnd = (private_handle_t *)layer->handle
468 const hwc_layer_1_t* layer = &list->hwLayers[i]; local
507 hwc_layer_1_t* layer = &list->hwLayers[index]; local
567 const hwc_layer_1_t* layer = &list->hwLayers[i]; local
615 hwc_layer_1_t* layer = &list->hwLayers[index]; local
706 hwc_layer_1_t* layer = &list->hwLayers[i]; local
755 hwc_layer_1_t* layer = &list->hwLayers[i]; local
823 hwc_layer_1_t* layer = &list->hwLayers[i]; local
891 hwc_layer_1_t* layer = &list->hwLayers[i]; local
1193 hwc_layer_1_t* layer = &list->hwLayers[i]; local
1225 hwc_layer_1_t * layer = &list->hwLayers[i]; local
1249 hwc_layer_1_t* layer = &list->hwLayers[nYuvIndex]; local
1280 hwc_layer_1_t* layer = &list->hwLayers[i]; local
1326 hwc_layer_1_t* layer = &list->hwLayers[index]; local
1540 hwc_layer_1_t* layer = &list->hwLayers[index]; local
1568 __FUNCTION__, layer, zOrder, dest); local
1580 hwc_layer_1_t* layer = &list->hwLayers[index]; local
1657 hwc_layer_1_t *layer = &list->hwLayers[i]; local
1688 using pipe: %d", __FUNCTION__, layer, hnd, indexL ); local
1699 using pipe: %d", __FUNCTION__, layer, hnd, indexR ); local
1721 using pipe: %d", __FUNCTION__, layer, local
1762 hwc_layer_1_t* layer = &list->hwLayers[index]; local
1821 hwc_layer_1_t* layer = &list->hwLayers[index]; local
1882 "dest_pipeR: %d",__FUNCTION__, layer, zOrder, lDest, rDest); local
1918 hwc_layer_1_t *layer = &list->hwLayers[i]; local
1948 using pipe: %d", __FUNCTION__, layer, hnd, indexL ); local
1959 using pipe: %d", __FUNCTION__, layer, hnd, indexR ); local
1995 using pipe: %d", __FUNCTION__, layer, hnd, indexL ); local
2007 using pipe: %d", __FUNCTION__, layer, hnd, indexR ); local
2109 "dest_pipeR: %d",__FUNCTION__, layer, z, lDest, rDest); local
    [all...]
  /external/libxcam/modules/ocl/
cl_newwavelet_denoise_handler.cpp 67 uint32_t layer)
72 , _current_layer (layer)
292 uint32_t layer)
296 , _current_layer (layer)
378 uint32_t layer,
384 , _current_layer (layer)
497 CLWaveletTransformKernel::get_decomp_buffer (uint32_t channel, int layer)
501 buffer = _handler->get_decomp_buffer (channel, layer);
505 XCAM_LOG_ERROR ("get channel(%d) layer(%d) decomposition buffer failed!", channel, layer);
    [all...]
  /hardware/qcom/display/msm8994/libhwcomposer/
hwc_mdpcomp.cpp 288 hwc_layer_1_t* layer = &(list->hwLayers[index]); local
291 layer->compositionType = HWC_OVERLAY;
292 layer->hints |= HWC_HINT_CLEAR_FB;
294 /* Drop the layer when its already present in FB OR when it lies
297 layer->compositionType = HWC_OVERLAY;
340 // populate layer and MDP maps
375 hwc_layer_1_t const* layer = &list->hwLayers[i]; local
376 if(curFrame.isFBComposed[i] && layerUpdating(layer)){
383 bool MDPComp::isSupportedForMDPComp(hwc_context_t *ctx, hwc_layer_1_t* layer) {
384 private_handle_t *hnd = (private_handle_t *)layer->handle
570 const hwc_layer_1_t* layer = &list->hwLayers[i]; local
610 hwc_layer_1_t* layer = &list->hwLayers[index]; local
675 const hwc_layer_1_t* layer = &list->hwLayers[i]; local
724 hwc_layer_1_t* layer = &list->hwLayers[index]; local
827 hwc_layer_1_t* layer = &list->hwLayers[i]; local
871 hwc_layer_1_t* layer = &list->hwLayers[i]; local
926 hwc_layer_1_t* layer = &list->hwLayers[i]; local
947 hwc_layer_1_t* layer = &list->hwLayers[i]; local
964 hwc_layer_1_t* layer = &list->hwLayers[j]; local
993 hwc_layer_1_t* layer = &list->hwLayers[i]; local
1039 hwc_layer_1_t* layer = &list->hwLayers[index]; local
1098 hwc_layer_1_t* layer = &list->hwLayers[i]; local
1109 hwc_layer_1_t* layer = &list->hwLayers[idx]; local
1164 hwc_layer_1_t* layer = &list->hwLayers[i]; local
1226 hwc_layer_1_t* layer = &list->hwLayers[i]; local
1648 hwc_layer_1_t* layer = &list->hwLayers[i]; local
1680 hwc_layer_1_t * layer = &list->hwLayers[i]; local
1702 hwc_layer_1_t * layer = &list->hwLayers[i]; local
1721 hwc_layer_1_t* layer = &list->hwLayers[nYuvIndex]; local
1752 hwc_layer_1_t* layer = &list->hwLayers[nSecureRGBIndex]; local
1780 hwc_layer_1_t* layer = &list->hwLayers[i]; local
1826 hwc_layer_1_t* layer = &list->hwLayers[index]; local
1887 hwc_layer_1_t* layer = &list->hwLayers[index]; local
2163 hwc_layer_1_t* layer = &list->hwLayers[index]; local
2190 __FUNCTION__, layer, zOrder, dest); local
2202 hwc_layer_1_t* layer = &list->hwLayers[index]; local
2269 hwc_layer_1_t *layer = &list->hwLayers[i]; local
2300 using pipe: %d", __FUNCTION__, layer, hnd, indexL ); local
2311 using pipe: %d", __FUNCTION__, layer, hnd, indexR ); local
2342 using pipe: %d", __FUNCTION__, layer, local
2380 hwc_layer_1_t* layer = &list->hwLayers[index]; local
2439 hwc_layer_1_t* layer = &list->hwLayers[index]; local
2498 "dest_pipeR: %d",__FUNCTION__, layer, zOrder, lDest, rDest); local
2524 hwc_layer_1_t *layer = &list->hwLayers[i]; local
2554 using pipe: %d", __FUNCTION__, layer, hnd, indexL ); local
2565 using pipe: %d", __FUNCTION__, layer, hnd, indexR ); local
2605 using pipe: %d", __FUNCTION__, layer, hnd, indexL ); local
2617 using pipe: %d", __FUNCTION__, layer, hnd, indexR ); local
2646 const hwc_layer_1_t* layer = &list->hwLayers[i]; local
2689 hwc_layer_1_t* layer = &list->hwLayers[index]; local
2845 "dest_pipeR: %d",__FUNCTION__, layer, z, lDest, rDest); local
    [all...]
hwc_mdpcomp.h 93 /* per layer data */
102 /* maps layer list to mdp list */
106 /* maps mdp list to layer list */
110 /* layer composing on FB? */
147 virtual int configure(hwc_context_t *ctx, hwc_layer_1_t *layer,
149 /* Increments mdpCount if 4k2k yuv layer split is enabled.
150 * updates framebuffer z order if fb lies above source-split layer */
153 /* configures 4kx2k yuv layer*/
154 virtual int configure4k2kYuv(hwc_context_t *ctx, hwc_layer_1_t *layer,
159 /* Calculates the dirtyRegion for the given layer */
    [all...]
  /hardware/intel/img/hwcomposer/merrifield/common/base/
HwcLayerList.cpp 52 hwc_layer_1_t& layer = *(hwcLayer->getLayer()); local
54 // if layer was forced to use FB
56 VTRACE("layer was forced to use HWC_FRAMEBUFFER");
60 // check layer flags
61 if (layer.flags & HWC_SKIP_LAYER) {
62 VTRACE("plane type %d: (skip layer flag was set)", planeType);
66 if (layer.handle == 0) {
73 WTRACE("not a composer layer");
77 // check layer transform
98 // check layer blendin
118 hwc_layer_1_t& layer = *(hwcLayer->getLayer()); local
220 hwc_layer_1_t *layer = &mList->hwLayers[i]; local
654 ZOrderLayer *layer = new ZOrderLayer; local
    [all...]
  /external/syslinux/gpxe/src/include/gpxe/
netdevice.h 26 * The longest currently-supported link-layer address is for IPoIB.
30 /** Maximum length of a link-layer address
32 * The longest currently-supported link-layer address is for IPoIB.
36 /** Maximum length of a link-layer header
38 * The longest currently-supported link-layer header is for 802.11: a
40 * IPoIB link-layer pseudo-header doesn't actually include link-layer
45 /** Maximum length of a network-layer address */
49 * A network-layer protocol
60 * @v ll_source Link-layer source addres
    [all...]
  /frameworks/native/libs/vr/libdvr/include/dvr/
dvr_hardware_composer_client.h 85 // @param layer_index The index of the layer in the frame.
86 // @return A unique ID for the layer.
89 // Return the graphic buffer associated with the layer at |layer_index| in
93 // @param layer_index The index of the layer in the frame.
99 // Returns the fence FD for the layer at index |layer_index| in |frame|.
102 // @param layer_index The index of the layer in the frame.
107 // @param layer_index The index of the layer in the frame.
108 // @return describing the portion of the display covered by the layer. Will
114 // @param layer_index The index of the layer in the frame.
115 // @return describing the portion of the layer that will fill the displa
    [all...]
  /external/iproute2/man/man8/
ip-maddress.8 39 These commands attach/detach a static link-layer multicast address
42 statically. This command only manages link-layer addresses.
47 the link-layer multicast address.
  /external/scapy/scapy/contrib/
pnio.uts 1 % ProfinetIO layer test campaign
4 = Import the ProfinetIO layer
8 + Check DCE/RPC layer

Completed in 365 milliseconds

1 2 3 4 56 7 8 91011>>