HomeSort by relevance Sort by last modified time
    Searched defs:svc (Results 1 - 22 of 22) sorted by null

  /external/deqp/android/package/src/com/drawelements/deqp/execserver/
ServiceStarter.java 41 Intent svc = new Intent(this, com.drawelements.deqp.execserver.ExecService.class); local
42 startService(svc);
ExecServerActivity.java 60 Intent svc = new Intent(this, com.drawelements.deqp.execserver.ExecService.class); local
61 startService(svc);
  /external/libvpx/libvpx/vp9/encoder/
vp9_svc_layercontext.c 17 SVC *const svc = &cpi->svc; local
22 svc->spatial_layer_id = 0;
23 svc->temporal_layer_id = 0;
25 if (svc->number_temporal_layers > 1) {
26 layer_end = svc->number_temporal_layers;
28 layer_end = svc->number_spatial_layers;
32 LAYER_CONTEXT *const lc = &svc->layer_context[layer];
48 if (svc->number_temporal_layers > 1)
67 SVC *const svc = &cpi->svc; local
120 SVC *const svc = &cpi->svc; local
204 SVC *const svc = &cpi->svc; local
    [all...]
vp9_ratectrl.c 146 static void update_layer_buffer_level(SVC *svc, int encoded_frame_size) {
148 int current_temporal_layer = svc->temporal_layer_id;
150 temporal_layer < svc->number_temporal_layers; ++temporal_layer) {
151 LAYER_CONTEXT *lc = &svc->layer_context[temporal_layer];
181 update_layer_buffer_level(&cpi->svc, encoded_frame_size);
1231 const SVC *const svc = &cpi->svc; local
    [all...]
vp9_firstpass.c 261 const SVC *const svc = &cpi->svc; local
266 if (svc->number_spatial_layers > 1 &&
267 svc->number_temporal_layers == 1) {
268 twopass = &svc->layer_context[svc->spatial_layer_id].twopass;
355 if (cpi->use_svc && cpi->svc.number_temporal_layers == 1) {
357 for (i = 0; i < cpi->svc.number_spatial_layers; ++i) {
358 output_stats(&cpi->svc.layer_context[i].twopass.total_stats
942 SVC *const svc = &cpi->svc; local
    [all...]
vp9_onyx_int.h 497 SVC svc; member in struct:VP9_COMP
  /bionic/libc/kernel/uapi/linux/
atmsvc.h 44 struct sockaddr_atmsvc svc; member in struct:atmsvc_msg
  /development/ndk/platforms/android-L/include/linux/
atmsvc.h 44 struct sockaddr_atmsvc svc; member in struct:atmsvc_msg
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_svc_layercontext.c 18 SVC *const svc = &cpi->svc; local
22 int alt_ref_idx = svc->number_spatial_layers;
24 svc->spatial_layer_id = 0;
25 svc->temporal_layer_id = 0;
27 if (svc->number_temporal_layers > 1 && cpi->oxcf.rc_mode == VPX_CBR) {
28 layer_end = svc->number_temporal_layers;
30 layer_end = svc->number_spatial_layers;
34 LAYER_CONTEXT *const lc = &svc->layer_context[layer]
88 SVC *const svc = &cpi->svc; local
141 SVC *const svc = &cpi->svc; local
205 SVC *const svc = &cpi->svc; local
    [all...]
vp9_ratectrl.c 227 static void update_layer_buffer_level(SVC *svc, int encoded_frame_size) {
229 int current_temporal_layer = svc->temporal_layer_id;
231 temporal_layer < svc->number_temporal_layers; ++temporal_layer) {
232 LAYER_CONTEXT *lc = &svc->layer_context[temporal_layer];
261 update_layer_buffer_level(&cpi->svc, encoded_frame_size);
1308 const SVC *const svc = &cpi->svc; local
1338 const SVC *const svc = &cpi->svc; local
    [all...]
vp9_encoder.c 212 for (i = 0; i < cpi->svc.number_spatial_layers; ++i) {
213 LAYER_CONTEXT *const lc = &cpi->svc.layer_context[i];
225 vp9_free_frame_buffer(&cpi->svc.scaled_frames[i]);
227 vpx_memset(&cpi->svc.scaled_frames[0], 0,
228 MAX_LAG_BUFFERS * sizeof(cpi->svc.scaled_frames[0]));
571 cpi->svc.number_spatial_layers = oxcf->ss_number_layers;
573 cpi->svc.number_temporal_layers = oxcf->ts_number_layers;
575 if ((cpi->svc.number_temporal_layers > 1 && cpi->oxcf.rc_mode == VPX_CBR) ||
576 ((cpi->svc.number_temporal_layers > 1 ||
577 cpi->svc.number_spatial_layers > 1) &
2014 const SVC *const svc = &cpi->svc; local
    [all...]
vp9_encoder.h 382 SVC svc; member in struct:VP9_COMP
503 (cpi->svc.number_temporal_layers > 1 ||
504 cpi->svc.number_spatial_layers > 1) &&
512 cpi->oxcf.ss_play_alternate[cpi->svc.spatial_layer_id]));
vp9_firstpass.c 253 for (i = 0; i < cpi->svc.number_spatial_layers; ++i) {
254 output_stats(&cpi->svc.layer_context[i].twopass.total_stats,
428 &cpi->svc.layer_context[cpi->svc.spatial_layer_id] : NULL;
444 cpi->lst_fb_idx = cpi->svc.spatial_layer_id;
447 if (cpi->svc.number_spatial_layers + cpi->svc.spatial_layer_id <
450 cpi->svc.number_spatial_layers + cpi->svc.spatial_layer_id;
843 fps.spatial_layer_id = cpi->svc.spatial_layer_id
1006 SVC *const svc = &cpi->svc; local
    [all...]
  /external/kernel-headers/original/uapi/linux/
atmsvc.h 33 struct sockaddr_atmsvc local; /* local SVC address */
37 struct sockaddr_atmsvc svc; /* SVC address */ member in struct:atmsvc_msg
45 * Some policy stuff for atmsigd and for net/atm/svc.c. Both have to agree on
46 * what PCR is used to request bandwidth from the device driver. net/atm/svc.c
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/
vp9_cx_iface.c 190 ERROR("Not enough ref buffers for svc alt ref frames");
822 || (is_two_pass_svc(cpi) && cpi->svc.layer_context[0].is_key_frame)
1182 SVC *const svc = &cpi->svc; local
    [all...]
  /external/libvpx/libvpx/vp9/
vp9_cx_iface.c 1032 SVC *const svc = &cpi->svc; local
    [all...]
  /art/compiler/utils/arm/
assembler_arm32.cc 1145 void Arm32Assembler::svc(uint32_t imm24) { function in class:art::arm::Arm32Assembler
    [all...]
assembler_thumb2.cc 1933 void Thumb2Assembler::svc(uint32_t imm8) { function in class:art::arm::Thumb2Assembler
    [all...]
  /external/chromium_org/v8/src/arm/
assembler-arm.cc 2032 void Assembler::svc(uint32_t imm24, Condition cond) { function in class:v8::internal::Assembler
    [all...]
simulator-arm.cc 785 // reference to a svc (Supervisor Call) instruction that is handled by
787 // offset from the svc instruction so the simulator knows what to call.
1690 int svc = instr->SvcValue(); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ecf.filetransfer_4.0.0.v20100529-0735.jar 
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 

Completed in 997 milliseconds