Searched defs:want (Results 1 - 4 of 4) sorted by relevance

/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorSRC.cpp204 uint32_t want = pBuffer->frameCount * mChannelCnt * 2; local
205 pBuffer->raw = malloc(want);
207 while (mStarted && want > 0) {
262 if (todo > want) {
263 todo = want;
270 want -= todo;
/frameworks/native/opengl/libagl/
H A Dmatrix.h39 void ogles_validate_transform_impl(ogles_context_t* c, uint32_t want);
50 ogles_context_t* c, uint32_t want)
52 if (c->transforms.dirty & want)
53 ogles_validate_transform_impl(c, want);
49 ogles_validate_transform( ogles_context_t* c, uint32_t want) argument
H A Darray.cpp1113 uint32_t want = local
1117 want |= transform_state_t::MVUI;
1118 want |= transform_state_t::MODELVIEW;
1121 want |= transform_state_t::TEXTURE;
1124 want |= transform_state_t::MODELVIEW; // needs eye coords
1126 ogles_validate_transform(c, want);
H A Dmatrix.cpp118 void ogles_validate_transform_impl(ogles_context_t* c, uint32_t want) argument
120 int dirty = c->transforms.dirty & want;
163 c->transforms.dirty &= ~want;

Completed in 110 milliseconds