/packages/services/Car/service/src/com/android/car/hal/ |
VmsHalService.java | 64 * This is a glue layer between the VehicleHal and the VmsService. It sends VMS properties back and 108 void onDataMessage(VmsLayer layer, int publisherId, byte[] payload); 140 public void addSubscription(IVmsSubscriberClient listener, VmsLayer layer) { 143 Log.d(TAG, "Checking for first subscription. Layer: " + layer); 147 firstSubscriptionForLayer = !mRouting.hasLayerSubscriptions(layer); 149 // Add the listeners subscription to the layer 150 mRouting.addSubscription(listener, layer); 153 notifyHalPublishers(layer, true); 158 public void removeSubscription(IVmsSubscriberClient listener, VmsLayer layer) { [all...] |
/frameworks/native/vulkan/libvulkan/ |
layers_extensions.cpp | 54 struct Layer { 58 // true if the layer intercepts vkCreateDevice and device commands 95 std::vector<Layer>& instance_layers) const; 97 void* GetGPA(const Layer& layer, 117 ALOGV("opening layer library '%s'", path_.c_str()); 118 // Libraries in the system layer library dir can't be loaded into 135 ALOGE("failed to load layer library '%s': %s", path_.c_str(), 147 ALOGV("closing layer library '%s'", path_.c_str()); 154 std::vector<Layer>& instance_layers) const 225 Layer layer; local 471 auto layer = local [all...] |
/frameworks/native/services/surfaceflinger/ |
SurfaceInterceptor.cpp | 20 #include "Layer.h" 43 void SurfaceInterceptor::enable(const SortedVector<sp<Layer>>& layers, 84 void SurfaceInterceptor::saveExistingSurfacesLocked(const SortedVector<sp<Layer>>& layers) { 87 l->traverseInZOrder(LayerVector::StateSet::Drawing, [this](Layer* layer) { 88 addSurfaceCreationLocked(createTraceIncrementLocked(), layer); 89 addInitialSurfaceStateLocked(createTraceIncrementLocked(), layer); 95 const sp<const Layer>& layer) 98 transaction->set_synchronous(layer->mTransactionFlags & BnSurfaceComposer::eSynchronous) 542 addSurfaceCreationLocked(createTraceIncrementLocked(), layer); local 551 addSurfaceDeletionLocked(createTraceIncrementLocked(), layer); local 562 addBufferUpdateLocked(createTraceIncrementLocked(), layer, width, height, frameNumber); local [all...] |
/external/pdfium/core/fpdfapi/render/ |
cpdf_rendercontext.h | 29 class Layer { 31 Layer(); 32 Layer(const Layer& that); 33 ~Layer(); 61 Layer* GetLayer(uint32_t index) { return &m_Layers[index]; } 71 std::vector<Layer> m_Layers;
|
/packages/services/Car/car-lib/src/android/car/vms/ |
VmsOperationRecorder.java | 22 * VmsOperationRecorder.get().subscribe(layer); 45 public void subscribe(VmsLayer layer) { 46 recordOp("subscribe", layer); 49 public void unsubscribe(VmsLayer layer) { 50 recordOp("unsubscribe", layer); 53 public void subscribe(VmsLayer layer, int publisherId) { 54 recordOp("subscribe", "publisherId", publisherId, layer); 57 public void unsubscribe(VmsLayer layer, int publisherId) { 58 recordOp("unsubscribe", "publisherId", publisherId, layer); 79 public void addSubscription(int sequenceNumber, VmsLayer layer) { [all...] |
VmsSubscriberManager.java | 68 void onVmsMessageReceived(VmsLayer layer, byte[] payload); 84 public void onVmsMessageReceived(VmsLayer layer, byte[] payload) { 96 executor.execute(() -> {dispatchOnReceiveMessage(layer, payload);}); 199 * Subscribes to listen to the layer specified. 201 * @param layer the layer to subscribe to. 205 public void subscribe(VmsLayer layer) throws CarNotConnectedException { 208 mVmsSubscriberService.addVmsSubscriber(mSubscriberManagerClient, layer); 209 VmsOperationRecorder.get().subscribe(layer); 219 * Subscribes to listen to the layer specified from the publisher specified [all...] |
/external/tensorflow/tensorflow/python/layers/ |
pooling_test.py | 56 layer = pooling_layers.MaxPooling2D([2, 2], strides=2) 57 output = layer.apply(images) 63 layer = pooling_layers.AveragePooling2D([2, 2], strides=2) 64 output = layer.apply(images) 70 layer = pooling_layers.MaxPooling2D([2, 2], 73 output = layer.apply(images) 79 layer = pooling_layers.AveragePooling2D((2, 2), 83 output = layer.apply(images) 90 layer = pooling_layers.AveragePooling2D((2, 2), 94 output = layer.apply(images [all...] |
/frameworks/native/services/vr/hardware_composer/impl/ |
vr_hwc.h | 59 Layer id; 80 // This is set to true to notify the upper layer that the display is 82 // layer tracks display IDs and will handle new ones showing up. 100 // returned in z-order, with the lowest layer first. 115 HwcLayer(Layer new_id) { 135 bool DestroyLayer(Layer id); 136 HwcLayer* GetLayer(Layer id); 143 std::vector<Layer>* layer_ids, 148 std::vector<Layer> UpdateLastFrameAndGetLastFrameLayers(); 179 std::vector<Layer> last_frame_layers_ids_ [all...] |
/hardware/qcom/display/msm8909/sdm/libs/hwc/ |
hwc_tonemapper.cpp | 97 // Used to give to GPU tonemapper along with input layer fd 101 void ToneMapSession::SetToneMapConfig(Layer *layer) { 103 tone_map_config_.type = layer->input_buffer.flags.hdr ? TONEMAP_FORWARD : TONEMAP_INVERSE; 104 tone_map_config_.colorPrimaries = layer->input_buffer.color_metadata.colorPrimaries; 105 tone_map_config_.transfer = layer->input_buffer.color_metadata.transfer; 106 tone_map_config_.secure = layer->request.flags.secure; 107 tone_map_config_.format = layer->request.format; 110 bool ToneMapSession::IsSameToneMapConfig(Layer *layer) { 130 Layer *layer = layer_stack->layers.at(i); local 207 Layer *layer = layer_stack->layers.at(UINT32(session->layer_index_)); local [all...] |
/hardware/qcom/display/msm8909w_3100/sdm/libs/hwc/ |
hwc_tonemapper.cpp | 97 // Used to give to GPU tonemapper along with input layer fd 101 void ToneMapSession::SetToneMapConfig(Layer *layer) { 103 tone_map_config_.type = layer->input_buffer.flags.hdr ? TONEMAP_FORWARD : TONEMAP_INVERSE; 104 tone_map_config_.colorPrimaries = layer->input_buffer.color_metadata.colorPrimaries; 105 tone_map_config_.transfer = layer->input_buffer.color_metadata.transfer; 106 tone_map_config_.secure = layer->request.flags.secure; 107 tone_map_config_.format = layer->request.format; 110 bool ToneMapSession::IsSameToneMapConfig(Layer *layer) { 130 Layer *layer = layer_stack->layers.at(i); local 207 Layer *layer = layer_stack->layers.at(UINT32(session->layer_index_)); local [all...] |
/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/ |
BlurStack.java | 27 * layer is in focus. 32 * For a layer n, its depth interval is (@code [layerInfo[n].backDepth, 38 * (@code focusLayer) is the index of the layer that is in focus, that is, has 87 * The layer in which the focal depth belongs to. <b> For this layer, we 88 * assume that it is a single depth layer. That is, the front depth and back 111 public LayerInfo getLayerInfo(int layer) { 112 return layerInfo[layer]; 116 * Returns the number of depths in a given layer. 118 * @param layer layer inde 290 int layer = 0; local [all...] |
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/ |
BlurStack.java | 10 * layer is in focus. 15 * For a layer n, its depth interval is (@code [layerInfo[n].backDepth, 21 * (@code focusLayer) is the index of the layer that is in focus, that is, has 72 * The layer in which the focal depth belongs to. <b> For this layer, we 73 * assume that it is a single depth layer. That is, the front depth and back 96 public LayerInfo getLayerInfo(int layer) { 97 return layerInfo[layer]; 101 * Returns the number of depths in a given layer. 103 * @param layer layer inde 275 int layer = 0; local [all...] |
/external/syslinux/gpxe/src/include/gpxe/ |
arp.h | 17 /** A network-layer protocol that relies upon ARP */ 19 /** Network-layer protocol */ 24 * @v net_addr Network-layer address
|
/external/iproute2/tc/ |
em_nbyte.c | 31 "Usage: nbyte(NEEDLE at OFFSET [layer LAYER])\n" \ 34 " LAYER := { link | network | transport | 0..%d }\n" \ 36 "Example: nbyte(\"ababa\" at 12 layer 1)\n", 45 unsigned long offset = 0, layer = TCF_LAYER_NETWORK; local 70 } else if (!bstrcmp(a, "layer")) { 75 layer = parse_layer(a); 76 if (layer == INT_MAX) { 77 layer = bstrtoul(a); 78 if (layer == ULONG_MAX [all...] |
/hardware/qcom/display/msm8996/sdm/include/core/ |
layer_stack.h | 26 @brief File for display layer stack structure which represents a drawing buffer. 28 @details Display layer is a drawing buffer object which will be blended with other drawing buffers 44 /*! @brief This enum represents display layer blending types. 46 @sa Layer 54 //!< is constant blend operation. The layer would appear opaque if plane 62 /*! @brief This enum represents display layer composition types. 64 @sa Layer 67 kCompositionGPU, //!< This layer will be drawn onto the target buffer by GPU. Display 68 //!< device will mark the layer for GPU composition if it can not handle 71 kCompositionSDE, //!< This layer will be handled by SDE. It must not be composed by GPU [all...] |
/frameworks/native/services/surfaceflinger/layerproto/ |
LayerProtoParser.cpp | 26 bool sortLayers(LayerProtoParser::Layer* lhs, const LayerProtoParser::Layer* rhs) { 40 bool sortLayerUniquePtrs(const std::unique_ptr<LayerProtoParser::Layer>& lhs, 41 const std::unique_ptr<LayerProtoParser::Layer>& rhs) { 55 std::vector<std::unique_ptr<LayerProtoParser::Layer>> LayerProtoParser::generateLayerTree( 57 std::unordered_map<int32_t, LayerProtoParser::Layer*> layerMap = generateMap(layersProto); 58 std::vector<std::unique_ptr<LayerProtoParser::Layer>> layers; 60 for (std::pair<int32_t, Layer*> kv : layerMap) { 63 // will only be one unique_ptr made for each layer. 64 layers.push_back(std::unique_ptr<Layer>(kv.second)) 90 Layer* layer = new Layer(); local [all...] |
/frameworks/native/services/surfaceflinger/tests/fakehwc/ |
FakeComposerClient.cpp | 50 // Internal state of a layer in the HWC API. 62 // LayerImpl sufficient to re-create the pixels of a layer for the 66 FrameRect(Layer layer_, const RenderState& state, uint32_t z_) 67 : layer(layer_), renderState(state), z(z_) {} 69 const Layer layer; member in struct:__anon46587::FrameRect 207 Error FakeComposerClient::createLayer(Display /*display*/, Layer* outLayer) { 215 Error FakeComposerClient::destroyLayer(Display /*display*/, Layer layer) { 217 mLayers[layer]->mValid = false [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/ |
Kube.java | 138 mLayers[kUp] = new Layer(Layer.kAxisY); 139 mLayers[kDown] = new Layer(Layer.kAxisY); 140 mLayers[kLeft] = new Layer(Layer.kAxisX); 141 mLayers[kRight] = new Layer(Layer.kAxisX); 142 mLayers[kFront] = new Layer(Layer.kAxisZ) 150 Layer layer; local [all...] |
/external/jemalloc/test/include/test/ |
thd.h | 1 /* Abstraction layer for threading in tests. */
|
/external/scapy/scapy/layers/ |
__init__.py | 7 Layer package.
|
/external/tensorflow/tensorflow/python/keras/_impl/keras/layers/ |
wrappers.py | 16 """Wrapper layers: layers that augment the functionality of another layer. 27 from tensorflow.python.keras._impl.keras.engine import Layer 35 class Wrapper(Layer): 38 Wrappers take another layer and augment it in various ways. 39 Do not use this class as a layer, it is only an abstract base class. 43 layer: The layer to be wrapped. 46 def __init__(self, layer, **kwargs): 47 self.layer = layer [all...] |
/external/vulkan-validation-layers/layers/linux/ |
VkLayer_standard_validation.json | 3 "layer": {
|
/external/vulkan-validation-layers/layers/windows/ |
VkLayer_standard_validation.json | 3 "layer": {
|
/frameworks/base/core/java/android/view/ |
TextureLayer.java | 48 * Update the paint used when drawing this layer. 50 * @param paint The paint used when the layer is drawn into the destination canvas. 59 * Indicates whether this layer can be rendered. 61 * @return True if the layer can be rendered into, false otherwise 86 * Copies this layer into the specified bitmap. 88 * @param bitmap The bitmap to copy they layer into 97 * Update the layer's properties. Note that after calling this isValid() may 100 * @param width The new width of this layer 101 * @param height The new height of this layer 102 * @param isOpaque Whether this layer is opaqu [all...] |
/frameworks/hardware/interfaces/vr/composer/1.0/ |
IVrComposerClient.hal | 64 * Used to annotate the layer with additional information, which must be 65 * used to describe the content of the layer (ie: notification, permission, 66 * etc) which allows VR window manager to treat certain layer types 69 * @param display is the display on which the layer was created. 70 * @param layer is the layer affected by the change. 71 * @param layer_type the type of the layer as described by the window 73 * @param application_id the application id the layer belongs to. 76 * BAD_LAYER when an invalid layer handle was passed in. 79 * Layer layer [all...] |