Searched refs:c (Results 1 – 25 of 687) sorted by relevance
12345678910>>...28
7 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 …]
17 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 …]
96 inline bool isPrintable(char c) { in isPrintable() argument97 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() argument111 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() argument128 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 …]
94 inline bool isPrintable(char c) { in isPrintable() argument95 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() argument109 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() argument126 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 …]
164 inline bool isPrintable(char c) { in isPrintable() argument165 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() argument179 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() argument196 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 …]
158 #define mix(a,b,c) \ argument160 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) \ argument195 c ^= b; c -= rot(b,14); \196 a ^= c; a -= rot(c,11); \[all …]
24 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 …]
5 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 …]
1 `json-c`7 Home page for json-c: https://github.com/json-c/json-c/wiki24 `json-c` GitHub repo: https://github.com/json-c/json-c27 $ git clone https://github.com/json-c/json-c.git28 $ cd json-c46 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-c62 LDFLAGS+= -L$(JSON_C_DIR)/lib -ljson-c
226 ( ++(str), ((tok)->char_offset)++, c)236 char c = '\1'; in json_tokener_parse_ex() local258 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 …]
37 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
44 void convertFromHealthConfig(const HealthConfig& c, struct healthd_config *hc) { in convertFromHealthConfig() argument45 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 …]
23 SOURCES := $(MPL_DIR)/fast_no_motion.c24 SOURCES += $(MPL_DIR)/fusion_9axis.c25 SOURCES += $(MPL_DIR)/motion_no_motion.c26 SOURCES += $(MPL_DIR)/no_gyro_fusion.c27 SOURCES += $(MPL_DIR)/quaternion_supervisor.c28 SOURCES += $(MPL_DIR)/gyro_tc.c29 SOURCES += $(MPL_DIR)/authenticate.c30 SOURCES += $(MPL_DIR)/accel_auto_cal.c31 SOURCES += $(MPL_DIR)/compass_vec_cal.c32 SOURCES += $(MPL_DIR)/mag_disturb.c[all …]
23 SOURCES := $(MLLITE_DIR)/data_builder.c24 SOURCES += $(MLLITE_DIR)/hal_outputs.c25 SOURCES += $(MLLITE_DIR)/message_layer.c26 SOURCES += $(MLLITE_DIR)/ml_math_func.c27 SOURCES += $(MLLITE_DIR)/mpl.c28 SOURCES += $(MLLITE_DIR)/results_holder.c29 SOURCES += $(MLLITE_DIR)/start_manager.c30 SOURCES += $(MLLITE_DIR)/storage_manager.c33 SOURCES += $(MLLITE_DIR)/linux/mlos_linux.c34 SOURCES += $(MLLITE_DIR)/linux/ml_stored_data.c[all …]
22 LOCAL_SRC_FILES := sound_trigger_hw_iaxxx.c cvq_util.c46 LOCAL_SRC_FILES := adnc_strm.c62 LOCAL_SRC_FILES := tunnel.c72 LOCAL_SRC_FILES := iaxxx_odsp_hw.c84 LOCAL_SRC_FILES := tests/tunnel_test.c \85 tests/conversion_routines.c99 LOCAL_SRC_FILES := tests/sensor_param_test.c113 tests/oslo_iaxxx_sensor_control.c131 LOCAL_SRC_FILES := tests/oslo_data_injection_test.c144 LOCAL_SRC_FILES := tests/oslo_config_test.c[all …]
33 #define CONCAT_3(a, b, c) a##b##c argument34 #define EXPAND_CONCAT_3(a, b, c) CONCAT_3(a, b, c) argument38 #define CONCAT_4(a, b, c, d) a##b##c##d argument39 #define EXPAND_CONCAT_4(a, b, c, d) CONCAT_4(a, b, c, d) argument
24 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 …]
86 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.c97 LOCAL_SRC_FILES += $(AUDIO_PLATFORM)/hw_info.c102 LOCAL_SRC_FILES += audio_extn/usb.c[all …]
93 for (unsigned c = 0; c < width; c++) { in copyNV21toRGB32() local94 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() local131 rowDest[c] = yuvToRgbx(rowY[c], rowU[c], rowV[c], bgrxFormat); in copyYV12toRGB32()148 for (unsigned c = 0; c < width/2; c++) { in copyYUYVtoRGB32() local