Home
last modified time | relevance | path

Searched refs:fc (Results 1 – 25 of 294) sorted by relevance

12345678910>>...12

/external/v8/test/mjsunit/tools/
Dprofviz-test.default12 "set object 1 rect from 87.51699999999991, 7 to 87.60371656249991, 3 fc rgb \"#9944CC\"",
13 "set object 2 rect from 110.7114999999999, 7 to 110.7982165624999, 3 fc rgb \"#9944CC\"",
14 "set object 3 rect from 133.5129999999999, 7 to 133.59971656249988, 3 fc rgb \"#9944CC\"",
15 …"set object 4 rect from 61.49249999999995, 7 to 61.57921656249995, 5.020618556701031 fc rgb \"#994…
16 …"set object 5 rect from 101.40849999999992, 7 to 101.49521656249992, 5.103092783505154 fc rgb \"#9…
17 …"set object 6 rect from 57.242999999999974, 7 to 57.329716562499975, 6.766323024054983 fc rgb \"#9…
18 …"set object 7 rect from 58.751499999999965, 7 to 58.838216562499966, 6.766323024054983 fc rgb \"#9…
19 …"set object 8 rect from 60.72499999999996, 7 to 60.81171656249996, 6.766323024054983 fc rgb \"#994…
21 "set object 9 rect from 42.11000000000001, 12.83 to 42.28050000000001, 12.17 fc rgb \"#000000\"",
22 …"set object 10 rect from 42.298000000000016, 12.83 to 42.30000000000002, 12.17 fc rgb \"#000000\"",
[all …]
/external/libvpx/libvpx/vp9/common/
Dvp9_entropymode.c317 static void init_mode_probs(FRAME_CONTEXT *fc) { in init_mode_probs() argument
318 vp9_copy(fc->uv_mode_prob, default_if_uv_probs); in init_mode_probs()
319 vp9_copy(fc->y_mode_prob, default_if_y_probs); in init_mode_probs()
320 vp9_copy(fc->switchable_interp_prob, default_switchable_interp_prob); in init_mode_probs()
321 vp9_copy(fc->partition_prob, default_partition_probs); in init_mode_probs()
322 vp9_copy(fc->intra_inter_prob, default_intra_inter_p); in init_mode_probs()
323 vp9_copy(fc->comp_inter_prob, default_comp_inter_p); in init_mode_probs()
324 vp9_copy(fc->comp_ref_prob, default_comp_ref_p); in init_mode_probs()
325 vp9_copy(fc->single_ref_prob, default_single_ref_p); in init_mode_probs()
326 fc->tx_probs = default_tx_probs; in init_mode_probs()
[all …]
Dvp9_pred_common.h66 return cm->fc->skip_probs[vp9_get_skip_context(xd)]; in vp9_get_skip_prob()
75 return cm->fc->intra_inter_prob[vp9_get_intra_inter_context(xd)]; in vp9_get_intra_inter_prob()
82 return cm->fc->comp_inter_prob[vp9_get_reference_mode_context(cm, xd)]; in vp9_get_reference_mode_prob()
91 return cm->fc->comp_ref_prob[pred_context]; in vp9_get_pred_prob_comp_ref_p()
98 return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p1(xd)][0]; in vp9_get_pred_prob_single_ref_p1()
105 return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p2(xd)][1]; in vp9_get_pred_prob_single_ref_p2()
/external/tcpdump/
Dprint-802_15_4.c47 extract_header_length(uint16_t fc) in extract_header_length() argument
51 switch ((fc >> 10) & 0x3) { in extract_header_length()
53 if (fc & (1 << 6)) /* intra-PAN with none dest addr */ in extract_header_length()
66 switch ((fc >> 14) & 0x3) { in extract_header_length()
79 if (fc & (1 << 6)) { in extract_header_length()
95 uint16_t fc; in ieee802_15_4_if_print() local
103 fc = EXTRACT_LE_16BITS(p); in ieee802_15_4_if_print()
104 hdrlen = extract_header_length(fc); in ieee802_15_4_if_print()
111 ND_PRINT((ndo,"IEEE 802.15.4 %s packet ", ftypes[fc & 0x7])); in ieee802_15_4_if_print()
126 switch ((fc >> 10) & 0x3) { in ieee802_15_4_if_print()
[all …]
Dprint-802_11.c160 #define FC_VERSION(fc) ((fc) & 0x3) argument
161 #define FC_TYPE(fc) (((fc) >> 2) & 0x3) argument
162 #define FC_SUBTYPE(fc) (((fc) >> 4) & 0xF) argument
163 #define FC_TO_DS(fc) ((fc) & 0x0100) argument
164 #define FC_FROM_DS(fc) ((fc) & 0x0200) argument
165 #define FC_MORE_FLAG(fc) ((fc) & 0x0400) argument
166 #define FC_RETRY(fc) ((fc) & 0x0800) argument
167 #define FC_POWER_MGMT(fc) ((fc) & 0x1000) argument
168 #define FC_MORE_DATA(fc) ((fc) & 0x2000) argument
169 #define FC_WEP(fc) ((fc) & 0x4000) argument
[all …]
Dprint-fddi.c161 print_fddi_fc(netdissect_options *ndo, u_char fc) in print_fddi_fc() argument
163 switch (fc) { in print_fddi_fc()
194 switch (fc & FDDIFC_CLFF) { in print_fddi_fc()
197 ND_PRINT((ndo, "mac%1x ", fc & FDDIFC_ZZZZ)); in print_fddi_fc()
201 ND_PRINT((ndo, "smt%1x ", fc & FDDIFC_ZZZZ)); in print_fddi_fc()
205 ND_PRINT((ndo, "async%1x ", fc & FDDIFC_ZZZZ)); in print_fddi_fc()
209 ND_PRINT((ndo, "sync%1x ", fc & FDDIFC_ZZZZ)); in print_fddi_fc()
213 ND_PRINT((ndo, "imp_async%1x ", fc & FDDIFC_ZZZZ)); in print_fddi_fc()
217 ND_PRINT((ndo, "imp_sync%1x ", fc & FDDIFC_ZZZZ)); in print_fddi_fc()
221 ND_PRINT((ndo, "%02x ", fc)); in print_fddi_fc()
/external/clang/test/SemaCXX/
Dcomplex-overload.cpp4 void test_foo_1(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_1() argument
8 char *cp3 = foo(fc); in test_foo_1()
14 void test_foo_2(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_2() argument
17 int *ip = foo(fc); in test_foo_2()
23 void test_foo_3(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_3() argument
26 int *ip = foo(fc); in test_foo_3()
33 void test_promote_or_convert(float f, float _Complex fc) { in test_promote_or_convert() argument
34 char *cp = promote_or_convert(fc); in test_promote_or_convert()
41 void test_promote_or_convert2(float _Complex fc) { in test_promote_or_convert2() argument
42 int *cp = promote_or_convert2(fc); in test_promote_or_convert2()
/external/clang/test/Sema/
Doverloadable-complex.c4 void test_foo_1(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_1() argument
8 char *cp3 = foo(fc); in test_foo_1()
14 void test_foo_2(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_2() argument
17 int *ip = foo(fc); in test_foo_2()
23 void test_foo_3(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_3() argument
26 int *ip = foo(fc); in test_foo_3()
33 void test_promote_or_convert(float f, float _Complex fc) { in test_promote_or_convert() argument
34 char *cp = promote_or_convert(fc); // expected-error{{call to 'promote_or_convert' is ambiguous}} in test_promote_or_convert()
41 void test_promote_or_convert2(float _Complex fc) { in test_promote_or_convert2() argument
42 int *cp = promote_or_convert2(fc); in test_promote_or_convert2()
/external/jetty/src/java/org/eclipse/jetty/continuation/
DContinuationFilter.java103 FilteredContinuation fc; in doFilter() local
106 fc = new FauxContinuation(request); in doFilter()
107 request.setAttribute(Continuation.ATTRIBUTE,fc); in doFilter()
110 fc=(FilteredContinuation)c; in doFilter()
117 if (fc==null || (fc).enter(response)) in doFilter()
126 if (fc==null) in doFilter()
127 fc = (FilteredContinuation) request.getAttribute(Continuation.ATTRIBUTE); in doFilter()
129 complete=fc==null || (fc).exit(); in doFilter()
/external/sonivox/arm-wt-22k/host_src/
Deas_wave.c110 FlipWord(&p->fc.wFormatTag); in FlipWaveHeader()
111 FlipWord(&p->fc.nChannels); in FlipWaveHeader()
112 FlipDWord(&p->fc.nSamplesPerSec); in FlipWaveHeader()
113 FlipDWord(&p->fc.nAvgBytesPerSec); in FlipWaveHeader()
114 FlipWord(&p->fc.nBlockAlign); in FlipWaveHeader()
115 FlipWord(&p->fc.wBitsPerSample); in FlipWaveHeader()
158 wFile->wh.fc.wFormatTag = 1; in WaveFileCreate()
159 wFile->wh.fc.nChannels = (EAS_U16) nChannels; in WaveFileCreate()
160 wFile->wh.fc.nSamplesPerSec = (EAS_U32) nSamplesPerSec; in WaveFileCreate()
161 wFile->wh.fc.wBitsPerSample = (EAS_U16) wBitsPerSample; in WaveFileCreate()
[all …]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
DFastMethod.java23 FastMethod(FastClass fc, Method method) { in FastMethod() argument
24 super(fc, method, helper(fc, method)); in FastMethod()
27 private static int helper(FastClass fc, Method method) { in helper() argument
28 int index = fc.getIndex(method.getName(), method.getParameterTypes()); in helper()
53 return fc.invoke(index, obj, args); in invoke()
DFastConstructor.java23 FastConstructor(FastClass fc, Constructor constructor) { in FastConstructor() argument
24 super(fc, constructor, fc.getIndex(constructor.getParameterTypes())); in FastConstructor()
36 return fc.newInstance(index, null); in newInstance()
40 return fc.newInstance(index, args); in newInstance()
DFastMember.java22 protected FastClass fc; field in FastMember
26 protected FastMember(FastClass fc, Member member, int index) { in FastMember() argument
27 this.fc = fc; in FastMember()
44 return fc.getJavaClass(); in getDeclaringClass()
/external/llvm/test/Transforms/SLPVectorizer/X86/
Daddsub.ll11 @fc = common global [4 x float] zeroinitializer, align 16
111 …%1 = load float, float* getelementptr inbounds ([4 x float], [4 x float]* @fc, i32 0, i64 0), alig…
115 …%3 = load float, float* getelementptr inbounds ([4 x float], [4 x float]* @fc, i32 0, i64 1), alig…
119 …%5 = load float, float* getelementptr inbounds ([4 x float], [4 x float]* @fc, i32 0, i64 2), alig…
123 …%7 = load float, float* getelementptr inbounds ([4 x float], [4 x float]* @fc, i32 0, i64 3), alig…
137 …%1 = load float, float* getelementptr inbounds ([4 x float], [4 x float]* @fc, i32 0, i64 0), alig…
141 …%3 = load float, float* getelementptr inbounds ([4 x float], [4 x float]* @fc, i32 0, i64 1), alig…
145 …%5 = load float, float* getelementptr inbounds ([4 x float], [4 x float]* @fc, i32 0, i64 2), alig…
149 …%7 = load float, float* getelementptr inbounds ([4 x float], [4 x float]* @fc, i32 0, i64 3), alig…
163 …%1 = load float, float* getelementptr inbounds ([4 x float], [4 x float]* @fc, i32 0, i64 0), alig…
[all …]
/external/selinux/policycoreutils/sestatus/
Dsestatus.c88 void load_checks(char *pc[], int *npc, char *fc[], int *nfc) in load_checks() argument
143 fc[*nfc] = in load_checks()
146 memcpy(fc[*nfc], bufp, buf_len); in load_checks()
179 char *fc[MAX_CHECK]; in main() local
391 load_checks(pc, &npc, fc, &nfc); in main()
433 if (lgetfilecon(fc[i], &context) >= 0) { in main()
434 printf_tab(fc[i]); in main()
437 if (lstat(fc[i], &m)) { in main()
449 if (getfilecon(fc[i], &context) >= 0) { in main()
/external/elfutils/tests/
Dcoverage.sh21 gcov -n -a "$fc" |
22 …gawk "/$d.$fc/ { getline; co=gensub(/.*:(.*)% .*/, \"\\\\1\", \"g\"); co=co+0.0; li=\$4+0; printf …
25 unused_files="$unused_files $fc"
/external/libvpx/libvpx/vp8/encoder/
Dtokenize.c132 t->context_tree = cpi->common.fc.coef_probs [1] [0] [pt]; in tokenize2nd_order_b()
147 t->context_tree = cpi->common.fc.coef_probs [1] [0] [pt]; in tokenize2nd_order_b()
164 t->context_tree = cpi->common.fc.coef_probs [1] [band] [pt]; in tokenize2nd_order_b()
177 t->context_tree = cpi->common.fc.coef_probs [1] [band] [pt]; in tokenize2nd_order_b()
231 t->context_tree = cpi->common.fc.coef_probs [type] [c] [pt]; in tokenize1st_order_b()
247 t->context_tree = cpi->common.fc.coef_probs [type] [c] [pt]; in tokenize1st_order_b()
265 t->context_tree = cpi->common.fc.coef_probs [type] [band] [pt]; in tokenize1st_order_b()
277 t->context_tree = cpi->common.fc.coef_probs [type] [band] [pt]; in tokenize1st_order_b()
304 t->context_tree = cpi->common.fc.coef_probs [2] [0] [pt]; in tokenize1st_order_b()
320 t->context_tree = cpi->common.fc.coef_probs [2] [0] [pt]; in tokenize1st_order_b()
[all …]
Dmodecosts.c42 vp8_cost_tokens(rd_costs->inter_bmode_costs, x->fc.bmode_prob, T); in vp8_init_mode_costs()
44 vp8_cost_tokens(rd_costs->inter_bmode_costs, x->fc.sub_mv_ref_prob, in vp8_init_mode_costs()
47 vp8_cost_tokens(rd_costs->mbmode_cost[1], x->fc.ymode_prob, vp8_ymode_tree); in vp8_init_mode_costs()
51 vp8_cost_tokens(rd_costs->intra_uv_mode_cost[1], x->fc.uv_mode_prob, in vp8_init_mode_costs()
/external/pdfium/fpdfsdk/src/
Dfsdk_baseform.cpp911 FX_FLOAT fc[4]; local
913 pControl->GetOriginalBackgroundColor(iColorType, fc);
915 crBackground = CPWL_Color(iColorType, fc[0], fc[1], fc[2], fc[3]);
917 pControl->GetOriginalBorderColor(iColorType, fc);
919 crBorder = CPWL_Color(iColorType, fc[0], fc[1], fc[2], fc[3]);
960 da.GetColor(iColorType, fc);
961 crText = CPWL_Color(iColorType, fc[0], fc[1], fc[2], fc[3]);
1099 FX_FLOAT fc[4]; local
1101 pControl->GetOriginalBackgroundColor(iColorType, fc);
1103 crBackground = CPWL_Color(iColorType, fc[0], fc[1], fc[2], fc[3]);
[all …]
/external/clang/test/CodeGen/
Dcomplex-builtints.c27 volatile float _Complex fc = 1.0F + 2.0iF; in main() local
31 if (__builtin_conjf (fc) != 1.0F - 2.0iF) in main()
35 if (__builtin_crealf (fc) != 1.0F) in main()
39 if (__builtin_cimagf (fc) != 2.0F) in main()
/external/pdfium/core/src/fpdfdoc/
Ddoc_formcontrol.cpp212 FX_FLOAT fc[4], in GetOriginalColor()
214 GetMK().GetOriginalColor(iColorType, fc, csEntry); in GetOriginalColor()
379 FX_FLOAT fc[4], in GetOriginalColor()
383 fc[i] = 0; in GetOriginalColor()
395 fc[0] = pEntry->GetNumber(0); in GetOriginalColor()
398 fc[0] = pEntry->GetNumber(0); in GetOriginalColor()
399 fc[1] = pEntry->GetNumber(1); in GetOriginalColor()
400 fc[2] = pEntry->GetNumber(2); in GetOriginalColor()
403 fc[0] = pEntry->GetNumber(0); in GetOriginalColor()
404 fc[1] = pEntry->GetNumber(1); in GetOriginalColor()
[all …]
/external/javasqlite/src/main/java/SQLite/
DFunction.java40 public void function(FunctionContext fc, String args[]); in function() argument
49 public void step(FunctionContext fc, String args[]); in step() argument
57 public void last_step(FunctionContext fc); in last_step() argument
/external/wpa_supplicant_8/src/drivers/
Ddriver_nl80211_monitor.c29 u16 fc; in handle_tx_callback() local
33 fc = le_to_host16(hdr->frame_control); in handle_tx_callback()
36 event.tx_status.type = WLAN_FC_GET_TYPE(fc); in handle_tx_callback()
37 event.tx_status.stype = WLAN_FC_GET_STYPE(fc); in handle_tx_callback()
50 u16 fc; in from_unknown_sta() local
56 fc = le_to_host16(hdr->frame_control); in from_unknown_sta()
61 event.rx_from_unknown.wds = (fc & (WLAN_FC_FROMDS | WLAN_FC_TODS)) == in from_unknown_sta()
71 u16 fc; in handle_frame() local
75 fc = le_to_host16(hdr->frame_control); in handle_frame()
77 switch (WLAN_FC_GET_TYPE(fc)) { in handle_frame()
/external/libvpx/libvpx/vp8/decoder/
Ddetokenize.c173 const FRAME_CONTEXT * const fc = &dx->common.fc; in vp8_decode_mb_tokens() local
195 coef_probs = fc->coef_probs [1]; in vp8_decode_mb_tokens()
203 coef_probs = fc->coef_probs [0]; in vp8_decode_mb_tokens()
208 coef_probs = fc->coef_probs [3]; in vp8_decode_mb_tokens()
226 coef_probs = fc->coef_probs [2]; in vp8_decode_mb_tokens()
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
DFlatPackageWriterImpl.java150 FileChannel fc = fos.getChannel(); in write() local
153 b.getBox(fc); // moof in write()
154 mdat.getBox(fc); // mdat in write()
155 fc.truncate(fc.position()); in write()
156 fc.close(); in write()

12345678910>>...12