/third_party/jerryscript/targets/mbedos5/tools/ |
H A D | generate_pins.py | 17 Generate pins.cpp for a specified target, using target definitions from the 120 Enumerate pins specified in PinNames.h, by looking for a PinName enum 140 def write_pins_to_file(pins, pins_file, out_cpp_file): 142 Write the generated pins for a specified mbed board into the output C++ file. 149 '''.format(len(pins)) 151 lengths = ',\n '.join(str(len(pin)) for pin in pins) 158 magic_values = ',\n '.join(pins) 165 magic_strings = ',\n '.join('"' + pin + '"' for pin in pins) 185 Generate pins.cpp for a specified mbed board, using target definitions from the 194 default='source/pins [all...] |
/third_party/ffmpeg/libavdevice/ |
H A D | dshow_enumpins.c | 29 long WINAPI ff_dshow_enumpins_Next(DShowEnumPins *this, unsigned long n, IPin **pins, in DECLARE_ADDREF() 34 if (!pins) in DECLARE_ADDREF() 38 *pins = (IPin *) this->pin; in DECLARE_ADDREF() 61 long WINAPI ff_dshow_enumpins_Clone(DShowEnumPins *this, DShowEnumPins **pins) in ff_dshow_enumpins_Clone() argument 65 if (!pins) in ff_dshow_enumpins_Clone() 71 *pins = new; in ff_dshow_enumpins_Clone()
|
H A D | dshow.c | 385 IEnumPins *pins = 0; in dshow_get_device_media_types() local 389 if (IBaseFilter_EnumPins(device_filter, &pins) != S_OK) in dshow_get_device_media_types() 392 while (IEnumPins_Next(pins, 1, &pin, NULL) == S_OK) { in dshow_get_device_media_types() 438 IEnumPins_Release(pins); in dshow_get_device_media_types() 544 // get media types exposed by pins of device in dshow_cycle_devices() 1166 * Cycle through available pins using the device_filter device, of type 1169 * If ppin is NULL, cycle through all pins listing audio/video capabilities. 1176 IEnumPins *pins = 0; in dshow_cycle_pins() local 1191 r = IBaseFilter_EnumPins(device_filter, &pins); in dshow_cycle_pins() 1193 av_log(avctx, AV_LOG_ERROR, "Could not enumerate pins in dshow_cycle_pins() [all...] |
/third_party/jerryscript/targets/mbedos5/ |
H A D | Makefile | 55 all: source/jerry-targetjs.h source/pins.cpp .mbed ../../.mbedignore 69 python ../../tools/js2c.py --ignore pins.js 71 source/pins.cpp:
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/ |
H A D | wps_registrar.c | 106 static void wps_free_pins(struct dl_list *pins) in wps_free_pins() argument 109 dl_list_for_each_safe(pin, prev, pins, struct wps_uuid_pin, list) in wps_free_pins() 164 struct dl_list pins; member 675 dl_list_init(®->pins); in wps_registrar_init() 730 wps_free_pins(®->pins); in wps_registrar_flush() 764 dl_list_for_each(pin, ®->pins, struct wps_uuid_pin, list) { in wps_registrar_invalidate_unused() 816 dl_list_add(®->pins, &p->list); in wps_registrar_add_pin() 861 dl_list_for_each_safe(pin, prev, ®->pins, struct wps_uuid_pin, list) in wps_registrar_expire_pins() 886 dl_list_for_each_safe(pin, prev, ®->pins, struct wps_uuid_pin, list) in wps_registrar_invalidate_wildcard_pin() 914 dl_list_for_each_safe(pin, prev, ®->pins, struc in wps_registrar_invalidate_pin() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/ |
H A D | wps_registrar.c | 107 static void wps_free_pins(struct dl_list *pins) in wps_free_pins() argument 110 dl_list_for_each_safe(pin, prev, pins, struct wps_uuid_pin, list) in wps_free_pins() 166 struct dl_list pins; member 676 dl_list_init(®->pins); in wps_registrar_init() 731 wps_free_pins(®->pins); in wps_registrar_flush() 765 dl_list_for_each(pin, ®->pins, struct wps_uuid_pin, list) { in wps_registrar_invalidate_unused() 817 dl_list_add(®->pins, &p->list); in wps_registrar_add_pin() 862 dl_list_for_each_safe(pin, prev, ®->pins, struct wps_uuid_pin, list) in wps_registrar_expire_pins() 887 dl_list_for_each_safe(pin, prev, ®->pins, struct wps_uuid_pin, list) in wps_registrar_invalidate_wildcard_pin() 915 dl_list_for_each_safe(pin, prev, ®->pins, struc in wps_registrar_invalidate_pin() [all...] |
/third_party/mesa3d/src/panfrost/bifrost/ |
H A D | bi_schedule.c | 965 bi_foreach_instr_in_tuple(succ, pins) { in bi_has_cross_passthrough_hazard() 966 bi_foreach_src(pins, s) { in bi_has_cross_passthrough_hazard() 967 if (bi_is_word_equiv(ins->dest[0], pins->src[s]) && in bi_has_cross_passthrough_hazard() 968 !bi_reads_temps(pins, s)) in bi_has_cross_passthrough_hazard()
|