Searched refs:clear_bits (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/net/disk_cache/blockfile/
H A Dbitmap.h18 // This constructor will allocate on a uint32 boundary. If |clear_bits| is
20 Bitmap(int num_bits, bool clear_bits);
32 // |clear_bits| is true.
34 void Resize(int num_bits, bool clear_bits);
H A Dbitmap.cc43 Bitmap::Bitmap(int num_bits, bool clear_bits) argument
50 if (clear_bits)
68 void Bitmap::Resize(int num_bits, bool clear_bits) { argument
87 if (old_maxsize < num_bits_ && clear_bits) {
/external/chromium_org/gpu/command_buffer/service/
H A Dgles2_cmd_decoder_unittest_base.cc555 GLuint clear_bits,
567 clear_bits,
606 GLuint clear_bits,
628 if ((clear_bits & GL_COLOR_BUFFER_BIT) != 0) {
634 if ((clear_bits & GL_STENCIL_BUFFER_BIT) != 0) {
642 if ((clear_bits & GL_DEPTH_BUFFER_BIT) != 0) {
649 EXPECT_CALL(*gl_, Clear(clear_bits))
553 SetupExpectationsForFramebufferClearing( GLenum target, GLuint clear_bits, GLclampf restore_red, GLclampf restore_green, GLclampf restore_blue, GLclampf restore_alpha, GLuint restore_stencil, GLclampf restore_depth, bool restore_scissor_test) argument
602 SetupExpectationsForFramebufferClearingMulti( GLuint read_framebuffer_service_id, GLuint draw_framebuffer_service_id, GLenum target, GLuint clear_bits, GLclampf restore_red, GLclampf restore_green, GLclampf restore_blue, GLclampf restore_alpha, GLuint restore_stencil, GLclampf restore_depth, bool restore_scissor_test) argument
H A Dgles2_cmd_decoder_unittest_base.h322 GLuint clear_bits,
335 GLuint clear_bits,
H A Dgles2_cmd_decoder.cc5194 GLbitfield clear_bits = 0; local
5202 clear_bits |= GL_COLOR_BUFFER_BIT;
5212 clear_bits |= GL_STENCIL_BUFFER_BIT;
5219 clear_bits |= GL_DEPTH_BUFFER_BIT;
5223 glClear(clear_bits);
5225 if ((clear_bits | GL_COLOR_BUFFER_BIT) != 0 &&
/external/chromium_org/cc/output/
H A Dgl_renderer_unittest.cc948 GLint clear_bits = GL_COLOR_BUFFER_BIT; local
950 GLint clear_bits = GL_COLOR_BUFFER_BIT | GL_STENCIL_BUFFER_BIT; local
954 EXPECT_CALL(*mock_context, clear(clear_bits)).Times(AtLeast(1));
960 EXPECT_CALL(*mock_context, clear(clear_bits)).Times(0).After(
H A Dgl_renderer.cc415 GLbitfield clear_bits = GL_COLOR_BUFFER_BIT; local
417 clear_bits |= GL_STENCIL_BUFFER_BIT;
418 gl_->Clear(clear_bits);
/external/ppp/pppd/
H A Dsys-linux.c232 static int modify_flags(int fd, int clear_bits, int set_bits);
288 static int modify_flags(int fd, int clear_bits, int set_bits) argument
294 flags = (flags & ~clear_bits) | set_bits;

Completed in 390 milliseconds