Home
last modified time | relevance | path

Searched refs:cn (Results 1 – 25 of 371) sorted by relevance

12345678910>>...15

/external/cn-cbor/
DSimple-Makefile11 cntest: src/cbor.h include/cn-cbor/cn-cbor.h src/cn-cbor.c src/cn-error.c src/cn-get.c test/test.c
12 clang $(CFLAGS) src/cn-cbor.c src/cn-error.c src/cn-get.c test/test.c -o cntest
14 size: cn-cbor.o
15 size cn-cbor.o
16 size -m cn-cbor.o
18 cn-cbor.o: src/cn-cbor.c include/cn-cbor/cn-cbor.h src/cbor.h
19 clang $(CFLAGS) -c src/cn-cbor.c
21 cn-cbor-play.zip: Makefile src/cbor.h src/cn-cbor.c include/cn-cbor/cn-cbor.h test/expected.out tes…
25 $(RM) cntest *.o new.out cn-cbor-play.zip
DAndroid.bp9 "src/cn-cbor.c",
10 "src/cn-create.c",
11 "src/cn-encoder.c",
12 "src/cn-error.c",
13 "src/cn-get.c",
26 name: "cn-cbor_test",
DMETADATA1 name: "cn-cbor"
3 "cn-cbor: A constrained node implementation of CBOR in C"
8 value: "https://github.com/cabo/cn-cbor"
12 value: "https://github.com/cabo/cn-cbor.git"
/external/cn-cbor/src/
DCMakeLists.txt3 # compiling/installing sources for cn-cbor
6 cn-cbor.c
7 cn-create.c
8 cn-encoder.c
9 cn-error.c
10 cn-get.c
16 add_library ( cn-cbor SHARED ${cbor_srcs} )
17 target_include_directories ( cn-cbor PUBLIC ../include )
18 target_include_directories ( cn-cbor PRIVATE ../src )
20 install ( TARGETS cn-cbor
[all …]
/external/selinux/libsepol/src/
Dconditional.c192 cond_node_t * cn) in cond_node_search() argument
195 cond_node_t *result = cond_node_find(p, cn, list, &was_created); in cond_node_search()
344 int cond_normalize_expr(policydb_t * p, cond_node_t * cn) in cond_normalize_expr() argument
353 cn->nbools = 0; in cond_normalize_expr()
355 memset(cn->bool_ids, 0, sizeof(cn->bool_ids)); in cond_normalize_expr()
356 cn->expr_pre_comp = 0x0; in cond_normalize_expr()
360 e = cn->expr; in cond_normalize_expr()
376 tmp = cn->true_list; in cond_normalize_expr()
377 cn->true_list = cn->false_list; in cond_normalize_expr()
378 cn->false_list = tmp; in cond_normalize_expr()
[all …]
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/sources/
Drx-error.hpp49 error_initial_type(rxu::error_ptr e, coordination_type cn) in error_initial_type()
51 , coordination(std::move(cn)) in error_initial_type()
59 error(rxu::error_ptr e, coordination_type cn) in error()
60 : initial(e, std::move(cn)) in error()
96 auto make_error(throw_ptr_tag&&, rxu::error_ptr exception, Coordination cn) in make_error() argument
98 …observable<T, error<T, Coordination>>(error<T, Coordination>(std::move(exception), std::move(cn))); in make_error()
102 auto make_error(throw_instance_tag&&, E e, Coordination cn) in make_error() argument
105 …eturn observable<T, error<T, Coordination>>(error<T, Coordination>(std::move(ep), std::move(cn))); in make_error()
124 auto error(E e, Coordination cn) in error() argument
125 …:value, detail::throw_ptr_tag, detail::throw_instance_tag>::type(), std::move(e), std::move(cn))) { in error()
[all …]
Drx-iterate.hpp74 iterate_initial_type(collection_type c, coordination_type cn) in iterate_initial_type()
76 , coordination(std::move(cn)) in iterate_initial_type()
84 iterate(collection_type c, coordination_type cn) in iterate()
85 : initial(std::move(c), std::move(cn)) in iterate()
168 auto iterate(Collection c, Coordination cn) in iterate() argument
171 … detail::iterate<Collection, Coordination>(std::move(c), std::move(cn))); in iterate()
199 auto from(Coordination cn) in from() argument
201 decltype( iterate(std::initializer_list<T>(), std::move(cn)))>::type { in from()
202 return iterate(std::initializer_list<T>(), std::move(cn)); in from()
246 auto from(Coordination cn, Value0 v0, ValueN... vn) in from() argument
[all …]
Drx-range.hpp47 range_state_type(T f, T l, std::ptrdiff_t s, coordination_type cn) in range_state_type()
51 , coordination(std::move(cn)) in range_state_type()
60 range(T f, T l, std::ptrdiff_t s, coordination_type cn) in range()
61 : initial(f, l, s, std::move(cn)) in range()
127 auto range(T first, T last, std::ptrdiff_t step, Coordination cn) in range() argument
130 detail::range<T, Coordination>(first, last, step, std::move(cn))); in range()
135 auto range(T first, T last, Coordination cn) in range() argument
139 detail::range<T, Coordination>(first, last, 1, std::move(cn))); in range()
144 auto range(T first, Coordination cn) in range() argument
148 … detail::range<T, Coordination>(first, std::numeric_limits<T>::max(), 1, std::move(cn))); in range()
Drx-timer.hpp54 timer_initial_type(rxsc::scheduler::clock_type::time_point t, coordination_type cn) in timer_initial_type()
56 , coordination(std::move(cn)) in timer_initial_type()
64 timer(rxsc::scheduler::clock_type::time_point t, coordination_type cn) in timer()
65 : initial(t, std::move(cn)) in timer()
68 timer(rxsc::scheduler::clock_type::duration p, coordination_type cn) in timer()
69 : initial(rxsc::scheduler::clock_type::time_point(), std::move(cn)) in timer()
124 auto timer(TimePointOrDuration when, Coordination cn) in timer() argument
128 … return detail::defer_timer<TimePointOrDuration, Coordination>::make(when, std::move(cn)); in timer()
Drx-interval.hpp54 …scheduler::clock_type::time_point i, rxsc::scheduler::clock_type::duration p, coordination_type cn) in interval_initial_type()
57 , coordination(std::move(cn)) in interval_initial_type()
66 …scheduler::clock_type::time_point i, rxsc::scheduler::clock_type::duration p, coordination_type cn) in interval()
67 : initial(i, p, std::move(cn)) in interval()
123 auto interval(rxsc::scheduler::clock_type::duration period, Coordination cn) in interval() argument
127 …terval<rxsc::scheduler::clock_type::duration, Coordination>::make(cn.now(), period, std::move(cn)); in interval()
143 …eduler::clock_type::time_point when, rxsc::scheduler::clock_type::duration period, Coordination cn) in interval() argument
147 …r_interval<rxsc::scheduler::clock_type::duration, Coordination>::make(when, period, std::move(cn)); in interval()
Drx-empty.hpp44 auto empty(Coordination cn) in empty() argument
45 -> decltype(from<T>(std::move(cn))) { in empty()
46 return from<T>(std::move(cn)); in empty()
/external/cn-cbor/test/
DCMakeLists.txt13 target_link_libraries ( ${name}_test PRIVATE cn-cbor )
23 add_executable (cn-test test.c )
24 target_include_directories ( cn-test PRIVATE ../include )
25 target_link_libraries ( cn-test PRIVATE cn-cbor )
31 COMMAND env MallocStackLogging=true ./cn-test >new.out
33 DEPENDS cn-test
/external/syzkaller/vendor/google.golang.org/grpc/internal/channelz/
Dfuncs.go142 cn := &channel{
151 db.get().addChannel(id, cn, true, pid, ref)
153 db.get().addChannel(id, cn, false, pid, ref)
251 func (c *channelMap) addChannel(id int64, cn *channel, isTopChannel bool, pid int64, ref string) {
253 cn.cm = c
254 c.channels[id] = cn
258 c.findEntry(pid).addChild(id, cn)
389 if cn, ok := c.channels[v]; ok {
390 cns = append(cns, cn)
392 NestedChans: copyMap(cn.nestedChans),
[all …]
/external/libopus/silk/fixed/
Dresidual_energy16_FIX.c46 opus_int cn[ MAX_MATRIX_SIZE ]; in silk_residual_energy16_covar_FIX() local
68 cn[ i ] = silk_LSHIFT( ( opus_int )c[ i ], Qxtra ); in silk_residual_energy16_covar_FIX()
69 … silk_assert( silk_abs(cn[i]) <= ( silk_int16_MAX + 1 ) ); /* Check that silk_SMLAWB can be used */ in silk_residual_energy16_covar_FIX()
76 tmp = silk_SMLAWB( tmp, wXx[ i ], cn[ i ] ); in silk_residual_energy16_covar_FIX()
86 tmp = silk_SMLAWB( tmp, pRow[ j ], cn[ j ] ); in silk_residual_energy16_covar_FIX()
88 tmp = silk_SMLAWB( tmp, silk_RSHIFT( pRow[ i ], 1 ), cn[ i ] ); in silk_residual_energy16_covar_FIX()
89 tmp2 = silk_SMLAWB( tmp2, tmp, cn[ i ] ); in silk_residual_energy16_covar_FIX()
/external/doclava/res/assets/templates-sdk/components/
Dmasthead.cs30 zh-cn-lang="API 指南"
39 zh-cn-lang="参考"
78 zh-cn-lang="设计"
87 zh-cn-lang="开发"
96 zh-cn-lang="分发"
140 zh-cn-lang="API 指南"
149 zh-cn-lang="参考"
202 zh-cn-lang="设计"
211 zh-cn-lang="开发"
221 zh-cn-lang="培训"
[all …]
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/declarations/
DHelper.java66 …String cn = ((com.github.javaparser.ast.body.ClassOrInterfaceDeclaration) container).getName().get… in getClassName() local
68 return cn; in getClassName()
70 return b + "." + cn; in getClassName()
74 … String cn = ((com.github.javaparser.ast.body.EnumDeclaration) container).getName().getId(); in getClassName() local
76 return cn; in getClassName()
78 return b + "." + cn; in getClassName()
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/
Drx-observable.hpp1579 static auto range(T first, T last, std::ptrdiff_t step, Coordination cn) in range() argument
1580 -> decltype(rxs::range<T>(first, last, step, std::move(cn))) { in range()
1581 return rxs::range<T>(first, last, step, std::move(cn)); in range()
1586 static auto range(T first, T last, Coordination cn) in range() argument
1587 -> decltype(rxs::range<T>(first, last, std::move(cn))) { in range()
1588 return rxs::range<T>(first, last, std::move(cn)); in range()
1593 static auto range(T first, Coordination cn) in range() argument
1594 -> decltype(rxs::range<T>(first, std::move(cn))) { in range()
1595 return rxs::range<T>(first, std::move(cn)); in range()
1625 static auto interval(rxsc::scheduler::clock_type::duration period, Coordination cn) in interval() argument
[all …]
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/subjects/
Drx-replaysubject.hpp138 explicit replay(Coordination cn, composite_subscription cs = composite_subscription()) in replay() argument
139 : s(count_type(), period_type(), cn, cs, composite_subscription{}) in replay()
143 replay(std::size_t count, Coordination cn, composite_subscription cs = composite_subscription()) in replay() argument
144 : s(count_type(std::move(count)), period_type(), cn, cs, composite_subscription{}) in replay()
148 …replay(rxsc::scheduler::clock_type::duration period, Coordination cn, composite_subscription cs = … in replay() argument
149 : s(count_type(), period_type(period), cn, cs, composite_subscription{}) in replay()
153 …replay(std::size_t count, rxsc::scheduler::clock_type::duration period, Coordination cn, composite… in replay() argument
154 : s(count_type(count), period_type(period), cn, cs, composite_subscription{}) in replay()
/external/honggfuzz/examples/apache-httpd/corpus_http2/
D584d668bf8b6c6a7a2d6cab70d06b9d1.000138ed.honggfuzz.cov293 …偨�����1_G[��b���Z�j,G�?�7�`��Q��~%�+���OH���|g��ٰ�|�E&��8����cn�6}=���jQn !2����j=
295 …偨�����1_G[��b���Z�j,G�?�7�`��Q��~%�+���OH���|g��ٰ�|�E&��8����cn�6}=���jQn !2����j=
297 …偨�����1_G[��b���Z�j,G�?�7�`��Q��~%�+���OH���|g��ٰ�|�E&��8����cn�6}=���jQn !2����j=
299 …偨�����1_G[��b���Z�j,G�?�7�`��Q��~%�+���OH���|g��ٰ�|�E&��8����cn�6}=���jQn !2����j=
301 …偨�����1_G[��b���Z�j,G�?�7�`��Q��~%�+���OH���|g��ٰ�|�E&��8����cn�6}=���jQn !2����j=
303 …偨�����1_G[��b���Z�j,G�?�7�`��Q��~%�+���OH���|g��ٰ�|�E&��8����cn�6}=���jQn !2����j=
305 …偨�����1_G[��b���Z�j,G�?�7�`��Q��~%�+���OH���|g��ٰ�|�E&��8����cn�6}=���jQn !2����j=
307 …偨�����1_G[��b���Z�j,G�?�7�`��Q��~%�+���OH���|g��ٰ�|�E&��8����cn�6}=���jQn !2����j=
309 …偨�����1_G[��b���Z�j,G�?�7�`��Q��~%�+���OH���|g��ٰ�|�E&��8����cn�6}=���jQn !2����j=
311 …偨�����1_G[��b���Z�j,G�?�7�`��Q��~%�+���OH���|g��ٰ�|�E&��8����cn�6}=���jQn !2����j=
[all …]
/external/honggfuzz/examples/apache-httpd/corpus_http1/
D584d668bf8b6c6a7a2d6cab70d06b9d1.000138ed.honggfuzz.cov293 …偨�����1_G[��b���Z�j,G�?�7�`��Q��~%�+���OH���|g��ٰ�|�E&��8����cn�6}=���jQn !2����j=
295 …偨�����1_G[��b���Z�j,G�?�7�`��Q��~%�+���OH���|g��ٰ�|�E&��8����cn�6}=���jQn !2����j=
297 …偨�����1_G[��b���Z�j,G�?�7�`��Q��~%�+���OH���|g��ٰ�|�E&��8����cn�6}=���jQn !2����j=
299 …偨�����1_G[��b���Z�j,G�?�7�`��Q��~%�+���OH���|g��ٰ�|�E&��8����cn�6}=���jQn !2����j=
301 …偨�����1_G[��b���Z�j,G�?�7�`��Q��~%�+���OH���|g��ٰ�|�E&��8����cn�6}=���jQn !2����j=
303 …偨�����1_G[��b���Z�j,G�?�7�`��Q��~%�+���OH���|g��ٰ�|�E&��8����cn�6}=���jQn !2����j=
305 …偨�����1_G[��b���Z�j,G�?�7�`��Q��~%�+���OH���|g��ٰ�|�E&��8����cn�6}=���jQn !2����j=
307 …偨�����1_G[��b���Z�j,G�?�7�`��Q��~%�+���OH���|g��ٰ�|�E&��8����cn�6}=���jQn !2����j=
309 …偨�����1_G[��b���Z�j,G�?�7�`��Q��~%�+���OH���|g��ٰ�|�E&��8����cn�6}=���jQn !2����j=
311 …偨�����1_G[��b���Z�j,G�?�7�`��Q��~%�+���OH���|g��ٰ�|�E&��8����cn�6}=���jQn !2����j=
[all …]
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/
Drx-replay.hpp133 …static Result member(Observable&& o, Coordination&& cn, composite_subscription cs = composite_subs… in member()
134 …return Result(Multicast(std::forward<Observable>(o), Subject(std::forward<Coordination>(cn), cs))); in member()
160 …static Result member(Observable&& o, Count count, Coordination&& cn, composite_subscription cs = c… in member()
161 …Result(Multicast(std::forward<Observable>(o), Subject(count, std::forward<Coordination>(cn), cs))); in member()
189 …static Result member(Observable&& o, Duration&& d, Coordination&& cn, composite_subscription cs = … in member()
190 …::forward<Observable>(o), Subject(std::forward<Duration>(d), std::forward<Coordination>(cn), cs))); in member()
220 …static Result member(Observable&& o, Count count, Duration&& d, Coordination&& cn, composite_subsc… in member()
221 …rd<Observable>(o), Subject(count, std::forward<Duration>(d), std::forward<Coordination>(cn), cs))); in member()
Drx-skip_until.hpp223 auto cn = identity_current_thread(); in member() local
224 … Result(SkipUntil(std::forward<Observable>(o), rxs::timer(std::forward<TimePoint>(when), cn), cn)); in member()
239 static Result member(Observable&& o, TimePoint&& when, Coordination cn) { in member()
240 … Result(SkipUntil(std::forward<Observable>(o), rxs::timer(std::forward<TimePoint>(when), cn), cn)); in member()
262 static Result member(Observable&& o, TriggerObservable&& t, Coordination&& cn) { in member()
263 …(std::forward<Observable>(o), std::forward<TriggerObservable>(t), std::forward<Coordination>(cn))); in member()
Drx-take_until.hpp231 auto cn = identity_current_thread(); in member() local
232 … Result(TakeUntil(std::forward<Observable>(o), rxs::timer(std::forward<TimePoint>(when), cn), cn)); in member()
247 static Result member(Observable&& o, TimePoint&& when, Coordination cn) { in member()
248 … Result(TakeUntil(std::forward<Observable>(o), rxs::timer(std::forward<TimePoint>(when), cn), cn)); in member()
270 static Result member(Observable&& o, TriggerObservable&& t, Coordination&& cn) { in member()
271 …(std::forward<Observable>(o), std::forward<TriggerObservable>(t), std::forward<Coordination>(cn))); in member()
Drx-observe_on.hpp54 observe_on(coordination_type cn) in observe_on()
55 : coordination(std::move(cn)) in observe_on()
205 …type, observer<value_type, this_type>> make(dest_type d, coordination_type cn, composite_subscript… in make()
206 auto coor = cn.create_coordinator(d.get_subscription()); in make()
248 static auto member(Observable&& o, Coordination&& cn) in member()
249 -> decltype(o.template lift<SourceValue>(ObserveOn(std::forward<Coordination>(cn)))) { in member()
250 return o.template lift<SourceValue>(ObserveOn(std::forward<Coordination>(cn))); in member()
/external/doclava/res/assets/templates-sdk/
Ddocpage.cs67 zh-cn-lang="上一课"
75 zh-cn-lang="下一课"
83 zh-cn-lang="开始"
94 zh-cn-lang="上一课"
102 zh-cn-lang="下一课"
221 zh-cn-lang="上一课"
230 zh-cn-lang="下一课"
239 zh-cn-lang="开始"

12345678910>>...15