/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/ |
mb_motion_comp.cpp | 237 /* Pointer to previous luminance frame */ 270 /* check whether the MV points outside the frame */ 274 /* (x,y) is inside the frame */ 282 /* (x,y) is outside the frame */ 306 /* check whether the MV points outside the frame */ 310 /* (x,y) is inside the frame */ 317 /* (x,y) is outside the frame */ 342 /* check whether the MV points outside the frame */ 346 /* (x,y) is inside the frame */ 353 /* (x,y) is outside the frame */ [all...] |
/hardware/ti/wlan/wl1271/TWD/TWDriver/ |
TWDriverScan.h | 182 EScanEtCondition earlyTerminationEvent; /**< Early termination frame type */ 183 TI_UINT8 ETMaxNumOfAPframes; /**< Number of frames from the early termination frame types according to the early 204 EScanEtCondition earlyTerminationEvent; /**< Scan early termination frame type */ 205 TI_UINT8 ETMaxNumOfAPframes; /**< Number of frames from the early termination frame types according to 244 TI_UINT64 latestTSFValue; /**< For SPS scan: the latest TSF at which a frame was received. Used to detect
|
/system/wlan/ti/wilink_6_1/TWD/TWDriver/ |
TWDriverScan.h | 183 EScanEtCondition earlyTerminationEvent; /**< Early termination frame type */ 184 TI_UINT8 ETMaxNumOfAPframes; /**< Number of frames from the early termination frame types according to the early 205 EScanEtCondition earlyTerminationEvent; /**< Scan early termination frame type */ 206 TI_UINT8 ETMaxNumOfAPframes; /**< Number of frames from the early termination frame types according to 245 TI_UINT64 latestTSFValue; /**< For SPS scan: the latest TSF at which a frame was received. Used to detect
|
/external/v8/src/ |
debug.cc | 316 // Patch the frame exit code with a break point. 333 // Restore the frame exit code. 379 // flood the top frame's function with one shot breakpoints. 810 // Get the top-most JavaScript frame. 812 JavaScriptFrame* frame = it.frame(); local 816 SetAfterBreakTarget(frame); 831 Handle<SharedFunctionInfo>(JSFunction::cast(frame->function())->shared()); 837 break_location_iterator.FindBreakLocationFromAddress(frame->pc()); 840 if (!StepNextContinue(&break_location_iterator, frame)) { 1075 JavaScriptFrame* frame = it.frame(); local 1121 JavaScriptFrame* frame = frames_it.frame(); local [all...] |
debug.h | 238 JavaScriptFrame* frame); 387 static void ActivateStepIn(StackFrame* frame); 389 static void ActivateStepOut(StackFrame* frame); 394 static void SetAfterBreakTarget(JavaScriptFrame* frame); 424 // Frame id for the frame of the current break. 436 // Frame pointer from last step next action. 439 // Frame pointer for frame from which step in was performed. 442 // Frame pointer for the frame where debugger should be called when curren [all...] |
SConscript | 61 frame-element.cc 107 virtual-frame.cc 127 arm/virtual-frame-arm.cc 152 mips/virtual-frame-mips.cc 170 ia32/virtual-frame-ia32.cc 189 x64/virtual-frame-x64.cc
|
/external/opencore/codecs_v2/video/avc_h264/enc/src/ |
motion_est.cpp | 23 #define DEFAULT_REF_IDX 0 /* always from the first frame in the reflist */ 236 /******* main function for macroblock prediction for the entire frame ***/ 237 /* if turns out to be IDR frame, set video->nal_unit_type to AVC_NALTYPE_IDR */ 319 /* do not try to detect a new scene if low frame rate and too close to previous I-frame */ 583 /* if read the end of frame, reset and loop around */ 993 ref = video->RefPicList0[DEFAULT_REF_IDX]->Sl; /* origin of actual frame */ [all...] |
/external/wpa_supplicant/ |
driver.h | 148 * mgmt_frame_protection - IEEE 802.11w management frame protection 405 * set_drop_unencrypted - Enable/disable unencrypted frame filtering 455 * frame 466 * frame 672 * (management frame processing) to wpa_supplicant. 687 * (management frame processing) to wpa_supplicant. 700 * (management frame processing) to wpa_supplicant. 711 * (management frame processing) to wpa_supplicant. 716 * send_mlme - Send management frame from MLME 718 * @data: IEEE 802.11 management frame with IEEE 802.11 heade [all...] |
/external/v8/src/ia32/ |
codegen-ia32.cc | 123 // ebp: caller's frame pointer 161 // ebp: caller's frame pointer 255 // frame to match this state. 267 // up, because it needs the expected frame height from the frame. 309 // If there is a valid frame, control flow can fall off the end of 438 // frame. If the expression is boolean-valued it may be compiled (or 452 // valid-looking frame state because we will continue to generate 455 // It's possible to have both a stack overflow and a valid frame 457 // with a dummied frame state, and visiting this expressio [all...] |
/external/qemu/distrib/sdl-1.2.12/src/cdrom/bsdi/ |
SDL_syscdrom.c | 55 msf_to_frame(int minute, int second, int frame) 57 return(minute * FRAMES_PER_MINUTE + second * FRAMES_PER_SECOND + frame); 61 frame_to_msf(int frame, int *minp, int *secp, int *framep) 63 *minp = frame / FRAMES_PER_MINUTE; 64 *secp = (frame % FRAMES_PER_MINUTE) / FRAMES_PER_SECOND; 65 *framep = frame % FRAMES_PER_SECOND; 458 int sts, minute, second, frame, eminute, esecond, eframe; local 463 frame_to_msf(start, &minute, &second, &frame); 467 cdb[5] = frame;
|
/external/srec/srec/include/ |
srec.h | 113 (ie 32767 frames * 20ms/frame = 655 sec), we use the high-bit to store 129 /* there are various arrays below which frame number long - this is the number allocated */ 132 /* for each frame, head of a linked list of word tokens for that frame */ 197 priority_q *word_priority_q; /*used to keep track of new word in frame*/ 201 costdata current_prune_delta; /* when the above changes in mid-frame */ 207 stokenID active_fsmarc_tokens; /*head of list of state tokens for the next frame. Used during 208 the search to keep track of new states for new frame. This 334 bigcostdata accumulated_cost_offset(costdata *cost_offsets, frameID frame);
|
/external/webkit/WebKit/haiku/WebCoreSupport/ |
FrameLoaderClientHaiku.cpp | 36 #include "Frame.h" 61 void FrameLoaderClientHaiku::setFrame(Frame* frame) 63 m_frame = frame; 652 Frame* FrameLoaderClientHaiku::dispatchCreatePage() 716 PassRefPtr<Frame> FrameLoaderClientHaiku::createFrame(const KURL& url, const String& name, 723 RefPtr<Frame> childFrame = Frame::create(m_frame->page(), ownerElement, this); 738 // The frame's onload handler may have removed it from the document.
|
/external/opencore/android/ |
android_surface_output.cpp | 123 * playback, we hold the last frame which is used by SurfaceFlinger 153 // We'll close frame buf and delete here for now. 329 // post the last video frame to refresh screen after pause 648 (0,"AndroidSurfaceOutput::writeAsync: Playback Progress - frame %d",iFrameNumber++)); 943 // create a frame buffer for software codecs 971 // create frame buffer heap and register with surfaceflinger 974 LOGE("Error creating frame buffer heap"); 982 // create frame buffers 994 LOGV("frame = %d x %d", frameWidth, frameHeight); 995 LOGV("frame #bytes = %d", frameSize) [all...] |
/external/opencore/codecs_v2/audio/gsm_amr/amr_nb/common/include/ |
int_lpc.h | 108 * Description : The 20 ms speech frame is divided into 4 subframes. 110 * 4th subframes (twice per frame) and interpolated at the 124 Word16 lsp_old[], /* i : LSP vector at the 4th subfr. of past frame (M) */ 126 present frame (M) */ 128 present frame (M) */ 146 Word16 lsp_old[], /* i : LSP vector at the 4th subfr. of past frame (M) */ 148 present frame (M) */ 150 present frame (M) */ 162 * Description : The 20 ms speech frame is divided into 4 subframes. 164 * subframes (once per frame) and interpolated at th [all...] |
/external/opencore/codecs_v2/omx/omx_h264enc/src/ |
avc_enc.cpp | 392 //IPPPPPPPPPP, no I frame for a long period of time 437 aEncOption.use_overrun_buffer = AVC_OFF; // since we are to be outputing full frame buffers 548 * Input buffer size should be equal to one frame, otherwise drop the frame 552 //Mark the inpur buffer consumed to indicate corrupt frame 572 //Mark the inpur buffer consumed to indicate corrupt frame 583 //Mark the inpur buffer consumed to indicate corrupt frame 594 //Mark the inpur buffer consumed to indicate corrupt frame 735 iReadyForNextFrame = OMX_TRUE; //ready to receive another set of input frame 746 iReadyForNextFrame = OMX_TRUE; //ready to receive another set of input frame [all...] |
/external/webkit/WebCore/rendering/ |
RenderTextControlSingleLine.cpp | 28 #include "Frame.h" 171 if (Frame* frame = document()->frame()) 172 frame->textFieldDidBeginEditing(static_cast<Element*>(node())); 176 if (Frame* frame = document()->frame()) 177 frame->textDidChangeInTextField(static_cast<Element*>(node())); 355 // 2) The frame is activ [all...] |
/frameworks/base/media/libstagefright/codecs/amrnb/common/include/ |
int_lpc.h | 108 * Description : The 20 ms speech frame is divided into 4 subframes. 110 * 4th subframes (twice per frame) and interpolated at the 124 Word16 lsp_old[], /* i : LSP vector at the 4th subfr. of past frame (M) */ 126 present frame (M) */ 128 present frame (M) */ 146 Word16 lsp_old[], /* i : LSP vector at the 4th subfr. of past frame (M) */ 148 present frame (M) */ 150 present frame (M) */ 162 * Description : The 20 ms speech frame is divided into 4 subframes. 164 * subframes (once per frame) and interpolated at th [all...] |
/external/webkit/WebKit/mac/WebView/ |
WebView.h | 184 create a main WebFrame with the view. Passing a top level frame name is useful if you 185 handle a targetted frame navigation that would normally open a window in some other 187 @param frame The frame used to create the view. 188 @param frameName The name to use for the top level frame. May be nil. 192 - (id)initWithFrame:(NSRect)frame frameName:(NSString *)frameName groupName:(NSString *)groupName; 293 @abstract Return the top level frame. 296 @result The main frame. 302 @abstract Return the frame that has the active selection. 303 @discussion Returns the frame that contains the first responder, if any. Otherwise returns th [all...] |
/external/webkit/WebKit/win/Interfaces/ |
IWebView.idl | 26 cpp_quote("/* identifiers for commands that can be called by the webview's frame */") 217 create a main WebFrame with the view. Passing a top level frame name is useful if you 218 handle a targetted frame navigation that would normally open a window in some other 220 @param frame The frame used to create the view. 221 @param frameName The name to use for the top level frame. May be nil. 224 - (id)initWithFrame:(NSRect)frame frameName:(NSString *)frameName groupName:(NSString *)groupName; 226 HRESULT initWithFrame([in] RECT frame, [in] BSTR frameName, [in] BSTR groupName); 310 @abstract Return the top level frame. 313 @result The main frame [all...] |
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/provider/crypto/ |
SHA1Impl.java | 36 * within limit of a frame of 64 bytes (16 words). 38 * the "computeHash(int[])" method is invoked on the frame to compute updated hash, 39 * and the number of bytes in the frame is set to 0. 40 * Thus, after appending all bytes, the frame contain only those bytes 147 * within limit of a frame of 64 bytes (16 words). 151 * and the number of bytes in the frame is set to 0.
|
/external/libffi/src/sparc/ |
v8.S | 32 #define ARGS (64+4) /* Offset of register area in frame */ 45 sub %sp, %i2, %sp ! alloca() space in stack for frame to set up 47 ! frame to set up 49 mov %l0, %o0 ! call routine to set up frame 60 mov %l0, %sp ! (delay) switch to frame 119 ! Reserve frame space for all arguments in case
|
/external/opencore/codecs_v2/audio/gsm_amr/amr_nb/common/src/ |
int_lpc.cpp | 100 4th subfr. of past frame (M) 102 present frame (M) 104 present frame (M) 125 Description : The 20 ms speech frame is divided into 4 subframes. 127 4th subframes (twice per frame) and interpolated at the 175 Word16 lsp_old[], /* i : LSP vector at the 4th subfr. of past frame (M) */ 177 present frame (M) */ 179 present frame (M) */ 247 4th subfr. of past frame (M) 249 present frame (M [all...] |
/external/opencore/codecs_v2/video/avc_h264/dec/src/ |
avcdec_api.cpp | 464 return AVCDEC_PICTURE_OUTPUT_READY; // to flushout frame buffers 520 // Conceal missing MBs of previously decoded frame 526 /* 3.2 Decoded frame reference marking. */ 549 // Conceal missing MBs of previously decoded frame 571 //conceal frame 572 /* 3.2 Decoded frame reference marking. */ 679 /* 3.2 Decoded frame reference marking. */ 748 each frame in the dpb. This code only works for frame based.*/ 830 return AVCDEC_FAIL; /* no frame to be outputted * [all...] |
/external/v8/src/arm/ |
regexp-macro-assembler-arm.h | 119 // Above the frame pointer - Stored registers and stack passed parameters. 129 // Below the frame pointer. 136 // the frame in GetCode. 177 // Register holding the frame address. Local variables, parameters and 210 // After aligning the frame, non-register arguments must be stored in 225 // Calls a C function and cleans up the frame alignment done by
|
/external/v8/src/x64/ |
debug-x64.cc | 51 // memory is later pushed onto the JS expression stack for the fake JS frame 52 // generated and also to the C frame generated on top of that. In the JS 53 // frame ONLY the registers containing pointers will be pushed on the 58 // Enter an internal frame. 78 // Get rid of the internal frame. 137 // expression stack of the fake JS frame.
|