Home
last modified time | relevance | path

Searched refs:c (Results 1 – 25 of 687) sorted by relevance

12345678910>>...28

/hardware/qcom/sm8150/data/ipacfg-mgr/ipanat/test/
DMakefile.am7 ipanattest_SOURCES = ipa_nat_test000.c \
8 ipa_nat_test001.c \
9 ipa_nat_test002.c \
10 ipa_nat_test003.c \
11 ipa_nat_test004.c \
12 ipa_nat_test005.c \
13 ipa_nat_test006.c \
14 ipa_nat_test007.c \
15 ipa_nat_test008.c \
16 ipa_nat_test009.c \
[all …]
DAndroid.mk17 LOCAL_SRC_FILES := ipa_nat_test000.c \
18 ipa_nat_test001.c \
19 ipa_nat_test002.c \
20 ipa_nat_test003.c \
21 ipa_nat_test004.c \
22 ipa_nat_test005.c \
23 ipa_nat_test006.c \
24 ipa_nat_test007.c \
25 ipa_nat_test008.c \
26 ipa_nat_test009.c \
[all …]
/hardware/qcom/data/ipacfg-mgr/msm8998/ipanat/test/
DMakefile.am7 ipanattest_SOURCES = ipa_nat_test000.c \
8 ipa_nat_test001.c \
9 ipa_nat_test002.c \
10 ipa_nat_test003.c \
11 ipa_nat_test004.c \
12 ipa_nat_test005.c \
13 ipa_nat_test006.c \
14 ipa_nat_test007.c \
15 ipa_nat_test008.c \
16 ipa_nat_test009.c \
[all …]
DAndroid.mk17 LOCAL_SRC_FILES := ipa_nat_test000.c \
18 ipa_nat_test001.c \
19 ipa_nat_test002.c \
20 ipa_nat_test003.c \
21 ipa_nat_test004.c \
22 ipa_nat_test005.c \
23 ipa_nat_test006.c \
24 ipa_nat_test007.c \
25 ipa_nat_test008.c \
26 ipa_nat_test009.c \
[all …]
/hardware/qcom/sdm845/data/ipacfg-mgr/ipanat/test/
DMakefile.am7 ipanattest_SOURCES = ipa_nat_test000.c \
8 ipa_nat_test001.c \
9 ipa_nat_test002.c \
10 ipa_nat_test003.c \
11 ipa_nat_test004.c \
12 ipa_nat_test005.c \
13 ipa_nat_test006.c \
14 ipa_nat_test007.c \
15 ipa_nat_test008.c \
16 ipa_nat_test009.c \
[all …]
DAndroid.mk17 LOCAL_SRC_FILES := ipa_nat_test000.c \
18 ipa_nat_test001.c \
19 ipa_nat_test002.c \
20 ipa_nat_test003.c \
21 ipa_nat_test004.c \
22 ipa_nat_test005.c \
23 ipa_nat_test006.c \
24 ipa_nat_test007.c \
25 ipa_nat_test008.c \
26 ipa_nat_test009.c \
[all …]
/hardware/st/nfc/st21nfc/adaptation/
Dconfig.cpp96 inline bool isPrintable(char c) { in isPrintable() argument
97 return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || in isPrintable()
98 (c >= '0' && c <= '9') || c == '/' || c == '_' || c == '-' || c == '.'; in isPrintable()
110 inline bool isDigit(char c, int base) { in isDigit() argument
111 if ('0' <= c && c <= '9') return true; in isDigit()
113 if (('A' <= c && c <= 'F') || ('a' <= c && c <= 'f')) return true; in isDigit()
127 inline int getDigitValue(char c, int base) { in getDigitValue() argument
128 if ('0' <= c && c <= '9') return c - '0'; in getDigitValue()
130 if ('A' <= c && c <= 'F') in getDigitValue()
131 return c - 'A' + 10; in getDigitValue()
[all …]
/hardware/st/nfc/1.0/adaptation/
Dconfig.cpp94 inline bool isPrintable(char c) { in isPrintable() argument
95 return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || in isPrintable()
96 (c >= '0' && c <= '9') || c == '/' || c == '_' || c == '-' || c == '.'; in isPrintable()
108 inline bool isDigit(char c, int base) { in isDigit() argument
109 if ('0' <= c && c <= '9') return true; in isDigit()
111 if (('A' <= c && c <= 'F') || ('a' <= c && c <= 'f')) return true; in isDigit()
125 inline int getDigitValue(char c, int base) { in getDigitValue() argument
126 if ('0' <= c && c <= '9') return c - '0'; in getDigitValue()
128 if ('A' <= c && c <= 'F') in getDigitValue()
129 return c - 'A' + 10; in getDigitValue()
[all …]
/hardware/nxp/nfc/halimpl/utils/
DphNxpConfig.cpp164 inline bool isPrintable(char c) { in isPrintable() argument
165 return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || in isPrintable()
166 (c >= '0' && c <= '9') || c == '/' || c == '_' || c == '-' || c == '.'; in isPrintable()
178 inline bool isDigit(char c, int base) { in isDigit() argument
179 if ('0' <= c && c <= '9') return true; in isDigit()
181 if (('A' <= c && c <= 'F') || ('a' <= c && c <= 'f')) return true; in isDigit()
195 inline int getDigitValue(char c, int base) { in getDigitValue() argument
196 if ('0' <= c && c <= '9') return c - '0'; in getDigitValue()
198 if ('A' <= c && c <= 'F') in getDigitValue()
199 return c - 'A' + 10; in getDigitValue()
[all …]
/hardware/qcom/msm8998/json-c/
Dlinkhash.c158 #define mix(a,b,c) \ argument
160 a -= c; a ^= rot(c, 4); c += b; \
161 b -= a; b ^= rot(a, 6); a += c; \
162 c -= b; c ^= rot(b, 8); b += a; \
163 a -= c; a ^= rot(c,16); c += b; \
164 b -= a; b ^= rot(a,19); a += c; \
165 c -= b; c ^= rot(b, 4); b += a; \
193 #define final(a,b,c) \ argument
195 c ^= b; c -= rot(b,14); \
196 a ^= c; a -= rot(c,11); \
[all …]
DAndroid.mk24 LOCAL_SRC_FILES := arraylist.c \
25 debug.c \
26 json_c_version.c \
27 json_object.c \
28 json_object_iterator.c \
29 json_tokener.c \
30 json_util.c \
31 libjson.c \
32 linkhash.c \
33 printbuf.c \
[all …]
DRELEASE_CHECKLIST.txt5 git clone https://github.com/json-c/json-c json-c-${release}
6 cd json-c-${release}
14 git branch json-c-${release}
15 git checkout json-c-${release}
55 tar -czf json-c-${release}.tar.gz -X excludes json-c-${release}
58 tar -czf json-c-${release}-nodoc.tar.gz -X excludes json-c-${release}
63 cd json-c-${release}
64 git tag -a json-c-${release}-$(date +%Y%m%d) -m "Release json-c-${release}"
66 git push origin json-c-${release}
99 cd json-c-${release}
[all …]
DREADME.md1 `json-c`
7 Home page for json-c: https://github.com/json-c/json-c/wiki
24 `json-c` GitHub repo: https://github.com/json-c/json-c
27 $ git clone https://github.com/json-c/json-c.git
28 $ cd json-c
46 Linking to `libjson-c`
53 CFLAGS += $(shell pkg-config --cflags json-c)
54 LDFLAGS += $(shell pkg-config --libs json-c)
61 CFLAGS += -I$(JSON_C_DIR)/include/json-c
62 LDFLAGS+= -L$(JSON_C_DIR)/lib -ljson-c
Djson_tokener.c226 ( ++(str), ((tok)->char_offset)++, c)
236 char c = '\1'; in json_tokener_parse_ex() local
258 while (PEEK_CHAR(c, tok)) { in json_tokener_parse_ex()
265 while (isspace((int)c)) { in json_tokener_parse_ex()
266 if ((!ADVANCE_CHAR(str, tok)) || (!PEEK_CHAR(c, tok))) in json_tokener_parse_ex()
269 if(c == '/' && !(tok->flags & JSON_TOKENER_STRICT)) { in json_tokener_parse_ex()
271 printbuf_memappend_fast(tok->pb, &c, 1); in json_tokener_parse_ex()
280 switch(c) { in json_tokener_parse_ex()
312 tok->quote_char = c; in json_tokener_parse_ex()
359 printbuf_memappend_fast(tok->pb, &c, 1); in json_tokener_parse_ex()
[all …]
DMakefile.am37 arraylist.c \
38 debug.c \
39 json_c_version.c \
40 json_object.c \
41 json_object_iterator.c \
42 json_tokener.c \
43 json_util.c \
44 linkhash.c \
45 printbuf.c \
46 random_seed.c
/hardware/interfaces/health/1.0/default/
Dconvert.cpp44 void convertFromHealthConfig(const HealthConfig& c, struct healthd_config *hc) { in convertFromHealthConfig() argument
45 hc->periodic_chores_interval_fast = c.periodicChoresIntervalFast; in convertFromHealthConfig()
46 hc->periodic_chores_interval_slow = c.periodicChoresIntervalSlow; in convertFromHealthConfig()
49 android::String8(c.batteryStatusPath.c_str(), in convertFromHealthConfig()
50 c.batteryStatusPath.size()); in convertFromHealthConfig()
53 android::String8(c.batteryHealthPath.c_str(), in convertFromHealthConfig()
54 c.batteryHealthPath.size()); in convertFromHealthConfig()
57 android::String8(c.batteryPresentPath.c_str(), in convertFromHealthConfig()
58 c.batteryPresentPath.size()); in convertFromHealthConfig()
61 android::String8(c.batteryCapacityPath.c_str(), in convertFromHealthConfig()
[all …]
/hardware/invensense/65xx/libsensors_iio/software/core/mpl/build/
Dfilelist.mk23 SOURCES := $(MPL_DIR)/fast_no_motion.c
24 SOURCES += $(MPL_DIR)/fusion_9axis.c
25 SOURCES += $(MPL_DIR)/motion_no_motion.c
26 SOURCES += $(MPL_DIR)/no_gyro_fusion.c
27 SOURCES += $(MPL_DIR)/quaternion_supervisor.c
28 SOURCES += $(MPL_DIR)/gyro_tc.c
29 SOURCES += $(MPL_DIR)/authenticate.c
30 SOURCES += $(MPL_DIR)/accel_auto_cal.c
31 SOURCES += $(MPL_DIR)/compass_vec_cal.c
32 SOURCES += $(MPL_DIR)/mag_disturb.c
[all …]
/hardware/invensense/6515/libsensors_iio/software/core/mpl/build/
Dfilelist.mk23 SOURCES := $(MPL_DIR)/fast_no_motion.c
24 SOURCES += $(MPL_DIR)/fusion_9axis.c
25 SOURCES += $(MPL_DIR)/motion_no_motion.c
26 SOURCES += $(MPL_DIR)/no_gyro_fusion.c
27 SOURCES += $(MPL_DIR)/quaternion_supervisor.c
28 SOURCES += $(MPL_DIR)/gyro_tc.c
29 SOURCES += $(MPL_DIR)/authenticate.c
30 SOURCES += $(MPL_DIR)/accel_auto_cal.c
31 SOURCES += $(MPL_DIR)/compass_vec_cal.c
32 SOURCES += $(MPL_DIR)/mag_disturb.c
[all …]
/hardware/invensense/6515/libsensors_iio/software/core/mllite/build/
Dfilelist.mk23 SOURCES := $(MLLITE_DIR)/data_builder.c
24 SOURCES += $(MLLITE_DIR)/hal_outputs.c
25 SOURCES += $(MLLITE_DIR)/message_layer.c
26 SOURCES += $(MLLITE_DIR)/ml_math_func.c
27 SOURCES += $(MLLITE_DIR)/mpl.c
28 SOURCES += $(MLLITE_DIR)/results_holder.c
29 SOURCES += $(MLLITE_DIR)/start_manager.c
30 SOURCES += $(MLLITE_DIR)/storage_manager.c
33 SOURCES += $(MLLITE_DIR)/linux/mlos_linux.c
34 SOURCES += $(MLLITE_DIR)/linux/ml_stored_data.c
[all …]
/hardware/invensense/65xx/libsensors_iio/software/core/mllite/build/
Dfilelist.mk23 SOURCES := $(MLLITE_DIR)/data_builder.c
24 SOURCES += $(MLLITE_DIR)/hal_outputs.c
25 SOURCES += $(MLLITE_DIR)/message_layer.c
26 SOURCES += $(MLLITE_DIR)/ml_math_func.c
27 SOURCES += $(MLLITE_DIR)/mpl.c
28 SOURCES += $(MLLITE_DIR)/results_holder.c
29 SOURCES += $(MLLITE_DIR)/start_manager.c
30 SOURCES += $(MLLITE_DIR)/storage_manager.c
33 SOURCES += $(MLLITE_DIR)/linux/mlos_linux.c
34 SOURCES += $(MLLITE_DIR)/linux/ml_stored_data.c
[all …]
/hardware/knowles/athletico/sound_trigger_hal/
DAndroid.mk22 LOCAL_SRC_FILES := sound_trigger_hw_iaxxx.c cvq_util.c
46 LOCAL_SRC_FILES := adnc_strm.c
62 LOCAL_SRC_FILES := tunnel.c
72 LOCAL_SRC_FILES := iaxxx_odsp_hw.c
84 LOCAL_SRC_FILES := tests/tunnel_test.c \
85 tests/conversion_routines.c
99 LOCAL_SRC_FILES := tests/sensor_param_test.c
113 tests/oslo_iaxxx_sensor_control.c
131 LOCAL_SRC_FILES := tests/oslo_data_injection_test.c
144 LOCAL_SRC_FILES := tests/oslo_config_test.c
[all …]
/hardware/interfaces/audio/common/all-versions/util/include/common/all-versions/
DVersionMacro.h33 #define CONCAT_3(a, b, c) a##b##c argument
34 #define EXPAND_CONCAT_3(a, b, c) CONCAT_3(a, b, c) argument
38 #define CONCAT_4(a, b, c, d) a##b##c##d argument
39 #define EXPAND_CONCAT_4(a, b, c, d) CONCAT_4(a, b, c, d) argument
/hardware/qcom/camera/msm8998/QCamera2/stack/mm-camera-test/
DAndroid.mk24 src/mm_qcamera_main_menu.c \
25 src/mm_qcamera_app.c \
26 src/mm_qcamera_unit_test.c \
27 src/mm_qcamera_video.c \
28 src/mm_qcamera_preview.c \
29 src/mm_qcamera_snapshot.c \
30 src/mm_qcamera_rdi.c \
31 src/mm_qcamera_reprocess.c\
32 src/mm_qcamera_queue.c \
33 src/mm_qcamera_socket.c \
[all …]
/hardware/qcom/audio/hal/
DAndroid.mk86 audio_hw.c \
87 voice.c \
88 platform_info.c \
89 audio_extn/ext_speaker.c \
90 audio_extn/audio_extn.c \
91 audio_extn/utils.c \
92 $(AUDIO_PLATFORM)/platform.c \
93 acdb.c
97 LOCAL_SRC_FILES += $(AUDIO_PLATFORM)/hw_info.c
102 LOCAL_SRC_FILES += audio_extn/usb.c
[all …]
/hardware/interfaces/automotive/evs/1.0/vts/functional/
DFormatConvert.cpp93 for (unsigned c = 0; c < width; c++) { in copyNV21toRGB32() local
94 unsigned uCol = (c & ~1); // uCol is always even and repeats 1:2 with Y values in copyNV21toRGB32()
96 rowDest[c] = yuvToRgbx(rowY[c], rowUV[uCol], rowUV[vCol], bgrxFormat); in copyNV21toRGB32()
130 for (unsigned c = 0; c < width; c++) { in copyYV12toRGB32() local
131 rowDest[c] = yuvToRgbx(rowY[c], rowU[c], rowV[c], bgrxFormat); in copyYV12toRGB32()
148 for (unsigned c = 0; c < width/2; c++) { in copyYUYVtoRGB32() local

12345678910>>...28