/ndk/sources/host-tools/ndk-stack/elff/ |
dwarf_cu.cc | 477 /* Create new state machine. */ 478 DwarfStateMachine state(stmtl_header_.default_is_stmt != 0); 497 state.end_sequence_ = true; 498 state.reset(stmtl_header_.default_is_stmt != 0); 503 Elf_Xword prev_address = state.address_; 505 state.address_ = 508 state.address_ = 512 address >= prev_address && address < state.address_) { 513 return set_source_info(&state, info); 514 } else if (address == state.address_) [all...] |
/device/generic/goldfish/opengl/system/GLESv1_enc/ |
GLEncoder.cpp | 75 GLClientState* state = ctx->m_state; local 94 *ptr = state->getBoundTexture(GL_TEXTURE_2D); 98 *ptr = state->getBoundTexture(GL_TEXTURE_EXTERNAL_OES); 102 if (!state->getClientStateParameter<GLint>(param,ptr)) { 113 GLClientState* state = ctx->m_state; local 133 *ptr = (GLfloat)state->getBoundTexture(GL_TEXTURE_2D); 137 *ptr = (GLfloat)state->getBoundTexture(GL_TEXTURE_EXTERNAL_OES); 141 if (!state->getClientStateParameter<GLfloat>(param,ptr)) { 152 GLClientState* state = ctx->m_state; local 172 *ptr = state->getBoundTexture(GL_TEXTURE_2D) << 16 191 GLClientState* state = ctx->m_state; local 344 const GLClientState::VertexAttribState *state = ctx->m_state->getState(loc); local [all...] |
/external/chromium/chrome/browser/sync/ |
backend_migrator_unittest.cc | 88 // Test that in the normal case a migration does transition through each state 97 EXPECT_CALL(*manager(), state()) 102 EXPECT_EQ(BackendMigrator::DISABLING_TYPES, migrator.state()); 105 EXPECT_EQ(BackendMigrator::WAITING_FOR_PURGE, migrator.state()); 110 EXPECT_EQ(BackendMigrator::REENABLING_TYPES, migrator.state()); 113 EXPECT_EQ(BackendMigrator::IDLE, migrator.state()); 123 EXPECT_CALL(*manager(), state()) 127 EXPECT_EQ(BackendMigrator::WAITING_TO_START, migrator.state()); 130 EXPECT_CALL(*manager(), state()) 135 EXPECT_EQ(BackendMigrator::DISABLING_TYPES, migrator.state()); [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/ |
i830_texstate.c | 112 /* Recalculate all state from scratch. Perhaps not the most 126 GLuint *state = i830->state.Tex[unit], format, pitch; local 131 memset(state, 0, sizeof(*state)); 135 if (i830->state.tex_buffer[unit] != NULL) { 136 drm_intel_bo_unreference(i830->state.tex_buffer[unit]); 137 i830->state.tex_buffer[unit] = NULL; 152 i830->state.tex_buffer[unit] = intelObj->mt->region->bo; 158 i830->state.tex_offset[unit] = dst_x * intelObj->mt->cpp + dst_y * pitch [all...] |
/external/mesa3d/src/mesa/drivers/dri/i915/ |
i830_texstate.c | 112 /* Recalculate all state from scratch. Perhaps not the most 126 GLuint *state = i830->state.Tex[unit], format, pitch; local 131 memset(state, 0, sizeof(*state)); 135 if (i830->state.tex_buffer[unit] != NULL) { 136 drm_intel_bo_unreference(i830->state.tex_buffer[unit]); 137 i830->state.tex_buffer[unit] = NULL; 152 i830->state.tex_buffer[unit] = intelObj->mt->region->bo; 158 i830->state.tex_offset[unit] = dst_x * intelObj->mt->cpp + dst_y * pitch [all...] |
/development/ndk/platforms/android-9/samples/native-activity/jni/ |
main.c | 33 * Our saved state data. 42 * Shared state for our app. 57 struct saved_state state; member in struct:engine 117 engine->state.angle = 0; 119 // Initialize GL state. 138 glClearColor(((float)engine->state.x)/engine->width, engine->state.angle, 139 ((float)engine->state.y)/engine->height, 1); 172 engine->state.x = AMotionEvent_getX(event, 0); 173 engine->state.y = AMotionEvent_getY(event, 0) [all...] |
/external/chromium/chrome/browser/download/ |
download_request_limiter.cc | 49 // Don't change the state if the user clicks on the page some where. 99 // NOTE: resetting state on a pending navigate isn't ideal. In particular 117 // reset the download state if the user is navigating to a different 187 TabDownloadState* state = GetDownloadState(&tab->controller(), NULL, false); local 188 return state ? state->download_status() : ALLOW_ONE_DOWNLOAD; 196 // thread so that we can query UI state. 206 TabDownloadState* state = GetDownloadState(&tab->controller(), NULL, false); local 207 if (!state) 210 state->OnUserGesture() 272 TabDownloadState* state = GetDownloadState( local [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
WorkerScriptController.cpp | 145 ScriptValue WorkerScriptController::evaluate(const String& script, const String& fileName, const TextPosition& scriptStartPosition, WorkerGlobalScopeExecutionState* state) 174 state->hadException = true; 175 state->errorMessage = toCoreString(message->Get()); 176 state->lineNumber = message->GetLineNumber(); 177 state->columnNumber = message->GetStartColumn() + 1; 179 state->sourceURL = sourceURL; 180 state->exception = ScriptValue(block.Exception(), isolate()); 183 state->hadException = false; 196 WorkerGlobalScopeExecutionState state; 197 evaluate(sourceCode.source(), sourceCode.url().string(), sourceCode.startPosition(), &state); [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/ocsp/ |
ocsp_ht.c | 77 int state; /* Current I/O state */ member in struct:ocsp_req_ctx_st 130 rctx->state = OHS_ASN1_WRITE; 161 rctx->state = OHS_ERROR; 268 if (!(rctx->state & OHS_NOREAD)) 285 switch(rctx->state) 298 rctx->state = OHS_ERROR; 307 rctx->state = OHS_ASN1_FLUSH; 317 rctx->state = OHS_FIRSTLINE; 324 rctx->state = OHS_ERROR [all...] |
/external/chromium_org/third_party/zlib/ |
inffast.c | 42 state->mode == LEN 46 state->bits < 8 48 On return, state->mode is one of: 71 struct inflate_state FAR *state; local 97 /* copy state to local variables */ 98 state = (struct inflate_state FAR *)strm->state; 105 dmax = state->dmax; 107 wsize = state->wsize; 108 whave = state->whave [all...] |
/external/openssl/crypto/ocsp/ |
ocsp_ht.c | 77 int state; /* Current I/O state */ member in struct:ocsp_req_ctx_st 130 rctx->state = OHS_ASN1_WRITE; 161 rctx->state = OHS_ERROR; 268 if (!(rctx->state & OHS_NOREAD)) 285 switch(rctx->state) 298 rctx->state = OHS_ERROR; 307 rctx->state = OHS_ASN1_FLUSH; 317 rctx->state = OHS_FIRSTLINE; 324 rctx->state = OHS_ERROR [all...] |
/external/webrtc/src/modules/audio_processing/test/android/apmtest/jni/ |
main.c | 33 * Our saved state data. 42 * Shared state for our app. 57 struct saved_state state; member in struct:engine 117 engine->state.angle = 0; 119 // Initialize GL state. 138 glClearColor(((float)engine->state.x)/engine->width, engine->state.angle, 139 ((float)engine->state.y)/engine->height, 1); 172 engine->state.x = AMotionEvent_getX(event, 0); 173 engine->state.y = AMotionEvent_getY(event, 0) [all...] |
/external/zlib/src/ |
inffast.c | 42 state->mode == LEN 46 state->bits < 8 48 On return, state->mode is one of: 71 struct inflate_state FAR *state; local 97 /* copy state to local variables */ 98 state = (struct inflate_state FAR *)strm->state; 105 dmax = state->dmax; 107 wsize = state->wsize; 108 whave = state->whave [all...] |
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/ |
gain_q.cpp | 135 Allocates state memory and initializes state memory 169 [State any special notes, constraints or cautions for users of this function] 174 Word16 gainQuant_init(gainQuantState **state) 178 if (state == (gainQuantState **) NULL) 183 *state = NULL; 188 /* fprintf(stderr, "gainQuant_init: can not malloc state structure\n"); */ 206 *state = s; 236 Initializes state memory to zero 269 [State any special notes, constraints or cautions for users of this function [all...] |
/ndk/sources/host-tools/make-3.81/ |
ar.c | 199 /* State of an `ar_glob' run, passed to `ar_glob_match'. */ 211 element against the pattern in STATE. */ 217 int gid UNUSED, int mode UNUSED, struct ar_glob_state *state) 219 if (fnmatch (state->pattern, mem, FNM_PATHNAME|FNM_PERIOD) == 0) 222 struct nameseq *new = (struct nameseq *) xmalloc (state->size); 223 new->name = concat (state->arname, mem, ")"); 224 new->next = state->chain; 225 state->chain = new; 226 ++state->n; 271 struct ar_glob_state state; 268 struct ar_glob_state state; local [all...] |
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
AbstractServiceTest.java | 41 Assert.assertEquals(Service.State.NEW, service.state()); 46 assertEquals(Service.State.RUNNING, service.state()); 51 assertEquals(Service.State.TERMINATED, service.state()); 60 assertEquals(Service.State.RUNNING, service.state()); 63 assertEquals(Service.State.TERMINATED, service.state()); [all...] |
/dalvik/hit/src/com/android/hit/ |
Queries.java | 66 public static Map<String, Set<ClassObj>> allClasses(State state) { 67 return classes(state, null); 70 public static Map<String, Set<ClassObj>> classes(State state, 78 for (Heap heap: state.mHeaps.values()) { 127 public static ClassObj findClass(State state, String name) { 128 return state.findClass(name); 135 public static Instance[] instancesOf(State state, String baseClassName) [all...] |
/device/generic/goldfish/lights/ |
lights_qemu.c | 54 /* Get brightness(0~255) from state. */ 56 rgb_to_brightness( struct light_state_t const* state ) 58 int color = state->color & 0x00ffffff; 65 set_light_backlight( struct light_device_t* dev, struct light_state_t const* state ) 77 state->flashOnMS, 78 state->flashOffMS, 79 state->flashMode, 80 state->brightnessMode, 81 state->color ); 83 int brightness = rgb_to_brightness( state ); [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/ |
svga_state.c | 50 /* Atoms to update hardware state prior to emitting a clear or draw 62 /* Atoms to update hardware state prior to emitting a draw packet. 86 /* Flattens the graph of state dependencies. Could swap the positions 124 unsigned *state) 136 * state flags which are generated and checked to help ensure 137 * state atoms are ordered correctly in the list. 142 prev = *state; 150 if (check_state(*state, atoms[i]->dirty)) { 153 ret = atoms[i]->update( svga, *state ); 158 /* generated = (prev ^ state) [all...] |
/external/chromium_org/ui/gfx/codec/ |
png_codec.cc | 144 PngDecoderState* state = local 146 DCHECK(state) << "LibPNG user transform pointer is NULL"; 153 state->is_opaque = false; 164 PngDecoderState* state = static_cast<PngDecoderState*>( local 182 state->width = static_cast<int>(w); 183 state->height = static_cast<int>(h); 210 switch (state->output_format) { 212 state->output_channels = 3; 215 state->output_channels = 4; 219 state->output_channels = 4 312 PngDecoderState* state = static_cast<PngDecoderState*>( local 490 PngEncoderState* state = static_cast<PngEncoderState*>(png_get_io_ptr(png)); local [all...] |
/external/mesa3d/src/gallium/drivers/svga/ |
svga_state.c | 50 /* Atoms to update hardware state prior to emitting a clear or draw 62 /* Atoms to update hardware state prior to emitting a draw packet. 86 /* Flattens the graph of state dependencies. Could swap the positions 124 unsigned *state) 136 * state flags which are generated and checked to help ensure 137 * state atoms are ordered correctly in the list. 142 prev = *state; 150 if (check_state(*state, atoms[i]->dirty)) { 153 ret = atoms[i]->update( svga, *state ); 158 /* generated = (prev ^ state) [all...] |
/external/skia/tests/ |
PathOpsQuadLineIntersectionThreadedTest.cpp | 76 PathOpsThreadState& state = *data; local 77 REPORTER_ASSERT(state.fReporter, data); 78 int ax = state.fA & 0x03; 79 int ay = state.fA >> 2; 80 int bx = state.fB & 0x03; 81 int by = state.fB >> 2; 82 int cx = state.fC & 0x03; 83 int cy = state.fC >> 2; 101 testLineIntersect(state.fReporter, quad, line, x, y); 102 state.fReporter->bumpTestCount() [all...] |
PathOpsSimplifyQuadThreadedTest.cpp | 13 PathOpsThreadState& state = *data; local 15 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter? 19 int ax = state.fA & 0x03; 20 int ay = state.fA >> 2; 21 int bx = state.fB & 0x03; 22 int by = state.fB >> 2; 23 int cx = state.fC & 0x03; 24 int cy = state.fC >> 2; 25 int dx = state.fD & 0x03; 26 int dy = state.fD >> 2 [all...] |
PathOpsSimplifyQuadralateralsThreadedTest.cpp | 13 PathOpsThreadState& state = *data; local 15 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter? 19 int ax = state.fA & 0x03; 20 int ay = state.fA >> 2; 21 int bx = state.fB & 0x03; 22 int by = state.fB >> 2; 23 int cx = state.fC & 0x03; 24 int cy = state.fC >> 2; 25 int dx = state.fD & 0x03; 26 int dy = state.fD >> 2 [all...] |
/external/opencv/cv/src/ |
cvstereobm.cpp | 57 CvStereoBMState* state = 0; local 63 state = (CvStereoBMState*)cvAlloc( sizeof(*state) ); 64 if( !state ) 67 state->preFilterType = CV_STEREO_BM_NORMALIZED_RESPONSE; 68 state->preFilterSize = 9; 69 state->preFilterCap = 31; 70 state->SADWindowSize = 15; 71 state->minDisparity = 0; 72 state->numberOfDisparities = numberOfDisparities > 0 ? numberOfDisparities : 64 [all...] |