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

1 2 3

  /external/chromium_org/ash/frame/
frame_util.cc 30 gfx::ImageSkia masked = local
33 gfx::ImageSkiaOperations::CreateSuperimposedImage(*holder, masked);
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketFrame.cpp 71 bool masked = secondByte & maskBit; local
99 size_t maskingKeyLength = masked ? maskingKeyWidthInBytes : 0;
109 if (masked) {
121 frame.masked = masked;
131 if (frame.masked) {
139 if (frame.masked) {
152 frameData.at(1) = masked ? maskBit : 0;
182 , masked(false)
194 , masked(flags & Masked
    [all...]
WebSocketFrame.h 71 Masked = 16,
84 bool masked; member in struct:WebCore::WebSocketFrame
  /external/chromium_org/net/websockets/
websocket_frame.cc 33 for (char* masked = begin; masked != end; ++masked) {
34 *masked ^= masking_key.key[masking_key_offset++];
56 masked = source.masked;
79 (header.masked ? WebSocketFrameHeader::kMaskingKeyLength : 0));
98 // - Actual payload (XOR masked with masking key if MASK bit is on)
119 second_byte |= header.masked ? kMaskBit : 0u;
142 if (header.masked) {
    [all...]
websocket_frame.h 69 masked(false),
85 bool masked; member in struct:net::WebSocketFrameHeader
103 // |data| is always unmasked even if the frame is masked. The size of |data|
136 // |data| is always unmasked even if the frame is masked. |data| might be
158 // If |header->masked| is true, |masking_key| must point to a valid
websocket_frame_parser.cc 121 bool masked = (second_byte & kMaskBit) != 0; local
152 if (masked) {
166 current_frame_header_->masked = masked;
191 if (current_frame_header_->masked) {
websocket_frame_test.cc 95 header.masked = true;
194 bool masked; member in struct:net::TestCase
217 header.masked = kTests[i].masked;
websocket_frame_parser_test.cc 70 EXPECT_FALSE(header->masked);
97 EXPECT_TRUE(header->masked);
168 EXPECT_FALSE(header->masked);
214 EXPECT_FALSE(header1->masked);
281 EXPECT_TRUE(header1->masked);
360 EXPECT_FALSE(header->masked);
415 EXPECT_FALSE(header->masked);
513 EXPECT_FALSE(header->masked);
569 EXPECT_FALSE(header->masked);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorResourceAgent.h 122 void didReceiveWebSocketFrame(unsigned long identifier, int opCode, bool masked, const char* payload, size_t payloadLength);
123 void didSendWebSocketFrame(unsigned long identifier, int opCode, bool masked, const char* payload, size_t payloadLength);
  /external/chromium_org/net/server/
web_socket.cc 291 bool masked = (second_byte & kMaskBit) != 0; local
310 if (client_frame && !masked) // In Hybi-17 spec client MUST mask his frame.
331 size_t actual_masking_key_length = masked ? kMaskingKeyWidthInBytes : 0;
345 if (masked) {
  /external/chromium_org/ui/gfx/
skbitmap_operations.cc 136 SkBitmap masked; local
137 masked.allocN32Pixels(rgb.width(), rgb.height());
138 masked.eraseARGB(0, 0, 0, 0);
142 SkAutoLockPixels lock_masked(masked);
144 for (int y = 0; y < masked.height(); ++y) {
147 uint32* dst_row = masked.getAddr32(0, y);
149 for (int x = 0; x < masked.width(); ++x) {
163 return masked;
  /external/chromium_org/ui/webui/resources/css/
expandable_bubble.css 37 .expandable-bubble[masked] > .expandable-bubble-contents >
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_swizzle.c 402 LLVMValueRef masked; local
408 masked = LLVMBuildAnd(builder, a,
411 shifted = LLVMBuildShl(builder, masked,
414 shifted = LLVMBuildLShr(builder, masked,
417 shifted = masked;
lp_bld_format_aos.c 154 LLVMValueRef shifted, casted, scaled, masked; local
227 * into masked = {B, G, R, A}
230 masked = LLVMBuildAnd(builder, shifted, LLVMConstVector(masks, 4), "");
235 casted = LLVMBuildSIToFP(builder, masked, LLVMVectorType(LLVMFloatTypeInContext(gallivm->context), 4), "");
237 casted = LLVMBuildUIToFP(builder, masked, LLVMVectorType(LLVMFloatTypeInContext(gallivm->context), 4), "");
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_swizzle.c 402 LLVMValueRef masked; local
408 masked = LLVMBuildAnd(builder, a,
411 shifted = LLVMBuildShl(builder, masked,
414 shifted = LLVMBuildLShr(builder, masked,
417 shifted = masked;
lp_bld_format_aos.c 154 LLVMValueRef shifted, casted, scaled, masked; local
227 * into masked = {B, G, R, A}
230 masked = LLVMBuildAnd(builder, shifted, LLVMConstVector(masks, 4), "");
235 casted = LLVMBuildSIToFP(builder, masked, LLVMVectorType(LLVMFloatTypeInContext(gallivm->context), 4), "");
237 casted = LLVMBuildUIToFP(builder, masked, LLVMVectorType(LLVMFloatTypeInContext(gallivm->context), 4), "");
  /external/chromium_org/third_party/libjingle/source/talk/base/
ipaddress.cc 325 in_addr masked; local
326 masked.s_addr = HostToNetwork32(host_order_ip & mask);
327 return IPAddress(masked);
  /external/chromium_org/third_party/webrtc/base/
ipaddress.cc 308 in_addr masked; local
309 masked.s_addr = HostToNetwork32(host_order_ip & mask);
310 return IPAddress(masked);
  /external/chromium_org/chrome/test/ispy/common/
ispy_utils_unittest.py 25 self.masked = Image.new('RGBA', (25, 25), (210, 0, 0, 255))
184 image_tools.EncodePNG(self.masked))
  /external/chromium_org/third_party/WebKit/Source/wtf/
PartitionAlloc.h 327 uintptr_t masked = ~reinterpret_cast<uintptr_t>(ptr); local
329 uintptr_t masked = bswapuintptrt(reinterpret_cast<uintptr_t>(ptr));
331 return reinterpret_cast<PartitionFreelistEntry*>(masked);
  /external/deqp/modules/gles2/functional/
es2fDepthStencilClearTests.cpp 121 DepthStencilClearCase (Context& context, const char* name, const char* description, int numIters, int numClears, bool depth, bool stencil, bool scissor, bool masked);
145 DepthStencilClearCase::DepthStencilClearCase (Context& context, const char* name, const char* description, int numIters, int numClears, bool depth, bool stencil, bool scissor, bool masked)
150 , m_masked (masked)
503 // iters clears depth stencil scissor masked
  /external/deqp/modules/gles3/functional/
es3fDepthStencilClearTests.cpp 121 DepthStencilClearCase (Context& context, const char* name, const char* description, int numIters, int numClears, bool depth, bool stencil, bool scissor, bool masked);
145 DepthStencilClearCase::DepthStencilClearCase (Context& context, const char* name, const char* description, int numIters, int numClears, bool depth, bool stencil, bool scissor, bool masked)
150 , m_masked (masked)
506 // iters clears depth stencil scissor masked
  /external/llvm/test/MC/Mips/
nacl-mask.s 98 # are not masked.
160 # are not masked.
  /external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
WebSocketFrame.java 179 boolean masked = ((b & 0x80) != 0);
212 if (masked) {
303 sb.append(", ").append(isMasked() ? "masked" : "unmasked");
  /bionic/libc/kernel/uapi/asm-x86/asm/
kvm.h 324 __u8 masked; member in struct:kvm_vcpu_events::__anon221

Completed in 346 milliseconds

1 2 3