content
stringlengths
6
1.05M
obf_code
stringlengths
6
1.05M
probability
float64
0
1
obf_dict
stringlengths
0
25.3k
#ifndef STORM_LOGIC_COMPARISONTYPE_H_ #define STORM_LOGIC_COMPARISONTYPE_H_ #include <iostream> #include "storm/utility/macros.h" #include "storm/exceptions/IllegalArgumentException.h" namespace storm { namespace logic { enum class ComparisonType { Less, LessEqual, Greater, GreaterEqual }; ...
#ifndef VAR_0 #define VAR_0 #include <IMPORT_0> #include "IMPORT_1" #include "storm/exceptions/IllegalArgumentException.h" CLASS_0 VAR_1 { CLASS_0 logic { enum CLASS_1 VAR_2 { VAR_3, VAR_4, VAR_5, VAR_6 }; inline bool FUNC_0(CLASS_2 t) { return (t == VAR_2::VAR_3 || t == VAR_...
0.875527
{'VAR_0': 'STORM_LOGIC_COMPARISONTYPE_H_', 'IMPORT_0': 'iostream', 'IMPORT_1': 'storm/utility/macros.h', 'CLASS_0': 'namespace', 'VAR_1': 'storm', 'CLASS_1': 'class', 'VAR_2': 'ComparisonType', 'CLASS_2': 'ComparisonType', 'VAR_3': 'Less', 'VAR_4': 'LessEqual', 'VAR_5': 'Greater', 'VAR_6': 'GreaterEqual', 'FUNC_0': 'is...
// change most of these to inline and put them here: bool inline MakeSureCornersAnticlockwise() { f64_vec2 pos0, pos1, pos2; this->MapLeftIfNecessary(pos0, pos1, pos2); f64_vec2 vec01 = pos1 - pos0; f64_vec2 vec02 = pos2 - pos0; f64 cross = vec01.x*vec02.y - vec01.y*vec02.x; if (cross < 0.0) { Vertex ...
// change most of these to inline and put them here: bool inline MakeSureCornersAnticlockwise() { f64_vec2 pos0, pos1, pos2; this->MapLeftIfNecessary(pos0, pos1, pos2); f64_vec2 vec01 = pos1 - pos0; f64_vec2 vec02 = pos2 - pos0; f64 cross = vec01.x*vec02.y - vec01.y*vec02.x; if (cross < 0.0) { Vertex ...
0.110298
{}
/* Write function prototype for pass_by_val_and_ref with a value int and ref int parameter. */ /* Write function prototype for pass_by_const_ref with const int reference parameter */
/* Write function prototype for pass_by_val_and_ref with a value int and ref int parameter. */ /* Write function prototype for pass_by_const_ref with const int reference parameter */
0.42279
{}
/* * Copyright (C) 2020 Centre National d'Etudes Spatiales (CNES) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appl...
/* * Copyright (C) 2020 Centre National d'Etudes Spatiales (CNES) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appl...
0.154616
{'IMPORT_0': 'vnsGridResampleImageFilter.h', 'IMPORT_1': 'itkImageToImageFilter.h', 'VAR_0': 'class', 'CLASS_0': 'SmartPointer', 'VAR_1': 'ResamplerFilterType', 'VAR_2': 'vnsMemberAndSetAndGetConstReferenceMacro', 'FUNC_0': 'UpdateWithCaching', 'FUNC_1': 'itkGetObjectMacro', 'VAR_3': 'operator', 'VAR_4': 'm_Resampler',...
#ifndef PE_PROCESSOR_H #define PE_PROCESSOR_H #include <stdio.h> #include <stdlib.h> #include <string> #include "read.h" #include <cstdlib> #include <condition_variable> #include <mutex> #include <thread> #include "options.h" #include "threadconfig.h" #include "filter.h" #include "umiprocessor.h" using namespace std...
#ifndef PE_PROCESSOR_H #define PE_PROCESSOR_H #include <IMPORT_0> #include <stdlib.h> #include <IMPORT_1> #include "IMPORT_2" #include <IMPORT_3> #include <IMPORT_4> #include <IMPORT_5> #include <IMPORT_6> #include "IMPORT_7" #include "IMPORT_8" #include "IMPORT_9" #include "umiprocessor.h" CLASS_0 namespace std; s...
0.824192
{'IMPORT_0': 'stdio.h', 'IMPORT_1': 'string', 'IMPORT_2': 'read.h', 'IMPORT_3': 'cstdlib', 'IMPORT_4': 'condition_variable', 'IMPORT_5': 'mutex', 'IMPORT_6': 'thread', 'IMPORT_7': 'options.h', 'IMPORT_8': 'threadconfig.h', 'IMPORT_9': 'filter.h', 'CLASS_0': 'using', 'CLASS_1': 'ReadPairPack', 'ID_0': 'ReadPairPack', 'V...
/* Respond to a button-press by posting a menu passed in as widget. * * Note that the "widget" argument is the menu being posted, NOT * the button that was pressed. */ static gint button_press( GtkWidget *widget, GdkEvent *event ) { if (event->type == GDK_BUTTON_PRESS) { GdkEve...
/* Respond to a button-press by posting a menu passed in as widget. * * Note that the "widget" argument is the menu being posted, NOT * the button that was pressed. */ static gint FUNC_0( GtkWidget *VAR_0, CLASS_0 *VAR_1 ) { if (VAR_1->VAR_2 == GDK_BUTTON_PRESS) { CLASS_1 *VAR_...
0.613793
{'FUNC_0': 'button_press', 'VAR_0': 'widget', 'CLASS_0': 'GdkEvent', 'VAR_1': 'event', 'VAR_2': 'type', 'CLASS_1': 'GdkEventButton', 'VAR_3': 'bevent', 'FUNC_1': 'GTK_MENU', 'VAR_4': 'button', 'VAR_5': 'time'}
// SPDX-License-Identifier: BSD-3-Clause /* Copyright 2020, Intel Corporation */ /* * common-conn.c -- a common connection functions used by examples */ #include <stdlib.h> #include <stdio.h> #include <string.h> #include <unistd.h> #include "common-conn.h" /* * malloc_aligned -- allocate an aligned chunk of memo...
// SPDX-License-Identifier: BSD-3-Clause /* Copyright 2020, Intel Corporation */ /* * common-conn.c -- a common connection functions used by examples */ #include <stdlib.h> #include <stdio.h> #include <IMPORT_0> #include <IMPORT_1> #include "IMPORT_2" /* * malloc_aligned -- allocate an aligned chunk of memory *...
0.5997
{'IMPORT_0': 'string.h', 'IMPORT_1': 'unistd.h', 'IMPORT_2': 'common-conn.h', 'VAR_0': 'size', 'VAR_1': 'pagesize', 'VAR_2': '_SC_PAGESIZE', 'FUNC_0': 'posix_memalign', 'FUNC_1': 'strerror', 'FUNC_2': 'common_peer_via_address', 'CLASS_0': 'rpma_util_ibv_context_type', 'VAR_3': 'peer_ptr', 'CLASS_1': 'ibv_context', 'FUN...
// Ceres Solver - A fast non-linear least squares minimizer // Copyright 2018 Google Inc. All rights reserved. // http://ceres-solver.org/ // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // * Redistributions of so...
// Ceres Solver - A fast non-linear least squares minimizer // Copyright 2018 Google Inc. All rights reserved. // http://ceres-solver.org/ // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // * Redistributions of so...
0.53139
{'VAR_0': 'CERES_INTERNAL_CONCURRENT_QUEUE_H_', 'IMPORT_0': 'condition_variable', 'IMPORT_1': 'mutex', 'IMPORT_2': 'thread', 'CLASS_0': 'namespace', 'VAR_1': 'typename', 'VAR_2': 'T', 'CLASS_1': 'T', 'VAR_3': 'class', 'FUNC_0': 'wait_', 'VAR_4': 'wait_', 'FUNC_1': 'Push', 'VAR_5': 'value', 'VAR_6': 'std', 'VAR_7': 'loc...
/**************************************************************************** * Copyright (C) 2020 by NQMCyber Ltd * * * * This file is part of EDGESec. * * ...
/**************************************************************************** * Copyright (C) 2020 by NQMCyber Ltd * * * * This file is part of EDGESec. * * ...
0.231308
{'IMPORT_0': '../ap/ap_config.h', 'VAR_0': 'AP_SECRET_LEN', 'VAR_1': 'passphrase_len', 'VAR_2': 'MAX_DEVICE_LABEL_SIZE', 'VAR_3': 'ETH_ALEN', 'VAR_4': 'if_mapper', 'VAR_5': 'vlan_mapper', 'VAR_6': 'hmap_bin_paths', 'VAR_7': 'allow_all_connections', 'VAR_8': 'default_open_vlanid', 'VAR_9': 'MAX_OS_PATH_LEN', 'VAR_10': '...
#pragma once #include <DirectXMath.h> using namespace DirectX; namespace Libero { struct VertexPosCol { VertexPosCol() = default; VertexPosCol(XMFLOAT3 pos, XMFLOAT4 color) : m_Position{ pos }, m_Color{ color }{}; XMFLOAT3 m_Position{}; XMFLOAT4 m_Color{}; }; struct VertexPosTexCol { VertexPosTexC...
#pragma once #include <DirectXMath.h> using namespace DirectX; namespace Libero { struct VertexPosCol { VertexPosCol() = default; VertexPosCol(XMFLOAT3 pos, XMFLOAT4 color) : m_Position{ pos }, m_Color{ color }{}; XMFLOAT3 m_Position{}; XMFLOAT4 m_Color{}; }; struct VertexPosTexCol { VertexPosTexC...
0.016226
{}
#ifndef ASLAM_CV_MATCHING_PROBLEM_FRAME_TO_FRAME_H_ #define ASLAM_CV_MATCHING_PROBLEM_FRAME_TO_FRAME_H_ /// \addtogroup Matching /// @{ /// /// @} #include <map> #include <memory> #include <vector> #include <aslam/common/macros.h> #include <aslam/common/memory.h> #include <aslam/common/pose-types.h> #include <aslam/...
#ifndef ASLAM_CV_MATCHING_PROBLEM_FRAME_TO_FRAME_H_ #define ASLAM_CV_MATCHING_PROBLEM_FRAME_TO_FRAME_H_ /// \addtogroup Matching /// @{ /// /// @} #include <IMPORT_0> #include <IMPORT_1> #include <IMPORT_2> #include <IMPORT_3> #include <IMPORT_4> #include <IMPORT_5> #include <IMPORT_6> #include <Eigen/Core> #includ...
0.784932
{'IMPORT_0': 'map', 'IMPORT_1': 'memory', 'IMPORT_2': 'vector', 'IMPORT_3': 'aslam/common/macros.h', 'IMPORT_4': 'aslam/common/memory.h', 'IMPORT_5': 'aslam/common/pose-types.h', 'IMPORT_6': 'aslam/common/feature-descriptor-ref.h', 'IMPORT_7': 'aslam/matcher/match.h', 'CLASS_0': 'namespace', 'VAR_0': 'aslam', 'CLASS_1'...
/* * Push x on top of the stack */ static void remap_undo_stack_push(remap_undo_stack_t *stack, int32_t x) { uint32_t i; i = stack->top; if (i == stack->size) { extend_remap_undo_stack(stack); } assert(i < stack->size); stack->data[i] = x; stack->top = i+1; }
/* * Push x on top of the stack */ static void FUNC_0(CLASS_0 *VAR_0, int32_t VAR_1) { uint32_t VAR_2; VAR_2 = VAR_0->VAR_3; if (VAR_2 == VAR_0->VAR_4) { FUNC_1(VAR_0); } FUNC_2(VAR_2 < VAR_0->VAR_4); VAR_0->VAR_5[VAR_2] = VAR_1; VAR_0->VAR_3 = VAR_2+1; }
0.849983
{'FUNC_0': 'remap_undo_stack_push', 'CLASS_0': 'remap_undo_stack_t', 'VAR_0': 'stack', 'VAR_1': 'x', 'VAR_2': 'i', 'VAR_3': 'top', 'VAR_4': 'size', 'FUNC_1': 'extend_remap_undo_stack', 'FUNC_2': 'assert', 'VAR_5': 'data'}
#include <nanafy.h> #include <stddef.h> size_t sizeof_nanafy_section_product (nanafy_section section, nanafy *nana){ return nanafy_section_file_size(section, nana); }
#include <nanafy.h> #include <IMPORT_0> size_t sizeof_nanafy_section_product (CLASS_0 VAR_0, CLASS_1 *VAR_1){ return FUNC_0(VAR_0, VAR_1); }
0.54758
{'IMPORT_0': 'stddef.h', 'CLASS_0': 'nanafy_section', 'VAR_0': 'section', 'CLASS_1': 'nanafy', 'VAR_1': 'nana', 'FUNC_0': 'nanafy_section_file_size'}
#ifndef GPLAY_H #define GPLAY_H #define PLAY_PLAYING 0x00 #define PLAY_BEGINNING 0x01 #define PLAY_POS 0x02 #define PLAY_PATTERN 0x03 #define PLAY_STOP 0x04 #define PLAY_STOPPED 0x80 typedef struct { unsigned char trans; unsigned char instr; unsigned char note; unsigned char lastnote; unsigned char newnote;...
#ifndef VAR_0 #define VAR_0 #define VAR_1 0x00 #define PLAY_BEGINNING 0x01 #define PLAY_POS 0x02 #define VAR_2 0x03 #define VAR_3 0x04 #define VAR_4 0x80 typedef struct { unsigned char trans; unsigned char instr; unsigned char VAR_5; unsigned char VAR_6; unsigned char VAR_7; unsigned VAR_8; unsigned cha...
0.565274
{'VAR_0': 'GPLAY_H', 'VAR_1': 'PLAY_PLAYING', 'VAR_2': 'PLAY_PATTERN', 'VAR_3': 'PLAY_STOP', 'VAR_4': 'PLAY_STOPPED', 'VAR_5': 'note', 'VAR_6': 'lastnote', 'VAR_7': 'newnote', 'VAR_8': 'pattptr', 'VAR_9': 'songptr', 'VAR_10': 'wave', 'VAR_11': 'pulsetime', 'VAR_12': 'wavetime', 'VAR_13': 'vibdelay', 'VAR_14': 'command'...
// // Generated by classdumpios 1.0.1 (64 bit) (iOS port by DreamDevLost)(Debug version compiled Sep 26 2020 13:48:20). // // Copyright (C) 1997-2019 <NAME>. // #import <ProtocolBuffer/PBCodable.h> #import "NSCopying-Protocol.h" @class NSMutableArray; @interface NRPBPropertyResponse : PBCodable <NSCopying> { ...
// // Generated by classdumpios 1.0.1 (64 bit) (iOS port by DreamDevLost)(Debug version compiled Sep 26 2020 13:48:20). // // Copyright (C) 1997-2019 <NAME>. // #import <ProtocolBuffer/PBCodable.h> #import "NSCopying-Protocol.h" @CLASS_0 VAR_0; @CLASS_2 VAR_1 : VAR_2 <VAR_3> { CLASS_1 *VAR_4; // 8 = 0x8 } ...
0.933432
{'CLASS_0': 'class', 'VAR_0': 'NSMutableArray', 'CLASS_1': 'NSMutableArray', 'CLASS_2': 'interface', 'VAR_1': 'NRPBPropertyResponse', 'VAR_2': 'PBCodable', 'VAR_3': 'NSCopying', 'VAR_4': '_properties', 'ID_0': 'Class', 'VAR_5': 'cxx_destruct', 'FUNC_0': 'property', 'VAR_6': 'retain', 'VAR_7': 'nonatomic', 'VAR_8': 'pro...
/* * TLP Timer, here we simply setup what segment we want to * have the TLP expire on, the normal rack_output() will then * send it out. * * We return 1, saying don't proceed with rack_output only * when all timers have been stopped (destroyed PCB?). */ static int rack_timeout_tlp(struct tcpcb *tp, struct tcp_ra...
/* * TLP Timer, here we simply setup what segment we want to * have the TLP expire on, the normal rack_output() will then * send it out. * * We return 1, saying don't proceed with rack_output only * when all timers have been stopped (destroyed PCB?). */ static int FUNC_0(struct tcpcb *tp, struct tcp_rack *VAR_0,...
0.444945
{'FUNC_0': 'rack_timeout_tlp', 'VAR_0': 'rack', 'VAR_1': 'cts', 'CLASS_0': 'rack_sendmap', 'CLASS_1': 'socket', 'VAR_2': 'so', 'VAR_3': 'out', 'VAR_4': 'tt_flags', 'FUNC_1': 'TSTMP_LT', 'VAR_5': 'r_ctl', 'VAR_6': 'RACK_TO_FRM_TLP', 'VAR_7': 'r_state', 'VAR_8': 't_state', 'FUNC_2': 'rack_set_state', 'VAR_9': 'KERN_TLS',...
// // GPForwards.h // GPDesignMode // // Created by 郭鹏 on 2017/3/7. // Copyright © 2017年 dandan. All rights reserved. // #import "GPPlayer.h" @interface GPForwards : GPPlayer @end
// // GPForwards.h // GPDesignMode // // Created by 郭鹏 on 2017/3/7. // Copyright © 2017年 dandan. All rights reserved. // #import "GPPlayer.h" @CLASS_0 VAR_0 : VAR_1 @VAR_2
0.977962
{'CLASS_0': 'interface', 'VAR_0': 'GPForwards', 'VAR_1': 'GPPlayer', 'VAR_2': 'end'}
/** * Finalize DDC library. Close DDC device * @return If succeed in closing DDC device or it is being used yet, return 1;@n * Otherwise, return 0. */ int DDCClose() { int ret = 1; if (ref_cnt == 0) { #if DDC_DEBUG ALOGE("%s: I2C_DDC is not available!!!!", __func__); #endif return ...
/** * Finalize DDC library. Close DDC device * @return If succeed in closing DDC device or it is being used yet, return 1;@n * Otherwise, return 0. */ int FUNC_0() { int VAR_0 = 1; if (ref_cnt == 0) { #if DDC_DEBUG ALOGE("%s: I2C_DDC is not available!!!!", __func__); #endif return ...
0.557226
{'FUNC_0': 'DDCClose', 'VAR_0': 'ret', 'FUNC_1': 'close', 'VAR_1': 'ddc_fd'}
/* Ultima modificacion: 07/05 - 07:10 Modificado por: Diego */ int LineaValida ( char * ); int CargaConfigDatos( char *, char *, CFG * ); int CargaConfig ( CFG *Config ) { char ConfigFile[20] = CFG_FileName; char *ptr; char linea[200 + 2]; char campo[30 + 2]; int CantParams = 0; FILE *Arch; /* Cantidad de ...
/* Ultima modificacion: 07/05 - 07:10 Modificado por: Diego */ int LineaValida ( char * ); int CargaConfigDatos( char *, char *, CFG * ); int CargaConfig ( CFG *Config ) { char ConfigFile[20] = CFG_FileName; char *ptr; char linea[200 + 2]; char campo[30 + 2]; int VAR_0 = 0; FILE *Arch; /* Cantidad de param...
0.100234
{'VAR_0': 'CantParams', 'FUNC_0': 'strtok', 'VAR_1': 'EquiposCdeMAX', 'FUNC_1': 'inet_aton'}
#include "mempool.h" #include "crypto.h" #include "utxo_to_tx.h" void mempool_init() { mempool = NULL; utxo_to_tx_init(); } Transaction *mempool_add(Transaction *tx) { MemPool *new_entry, *found_entry; new_entry = malloc(sizeof(MemPool)); hash_tx(new_entry->id, tx); new_entry->tx = tx; found_entry = m...
#include "IMPORT_0" #include "IMPORT_1" #include "IMPORT_2" void FUNC_0() { VAR_0 = NULL; utxo_to_tx_init(); } Transaction *FUNC_1(Transaction *VAR_1) { CLASS_0 *VAR_3, *found_entry; VAR_3 = FUNC_2(sizeof(VAR_2)); FUNC_3(VAR_3->VAR_4, VAR_1); VAR_3->VAR_1 = VAR_1; found_entry = mempool_find_node(VAR_3...
0.570939
{'IMPORT_0': 'mempool.h', 'IMPORT_1': 'crypto.h', 'IMPORT_2': 'utxo_to_tx.h', 'FUNC_0': 'mempool_init', 'VAR_0': 'mempool', 'FUNC_1': 'mempool_add', 'VAR_1': 'tx', 'CLASS_0': 'MemPool', 'VAR_2': 'MemPool', 'VAR_3': 'new_entry', 'FUNC_2': 'malloc', 'FUNC_3': 'hash_tx', 'VAR_4': 'id', 'FUNC_4': 'HASH_ADD', 'VAR_5': 'hh',...
//===========================================================================// // Copyright (C) Microsoft Corporation. All rights reserved. // //===========================================================================// #pragma once #ifndef MLR_MLRLINECLOUD_HPP #define MLR_MLRLINECLOUD_HPP #inclu...
//===========================================================================// // Copyright (C) Microsoft Corporation. All rights reserved. // //===========================================================================// #pragma once #ifndef MLR_MLRLINECLOUD_HPP #define MLR_MLRLINECLOUD_HPP #inclu...
0.090437
{'VAR_0': 'void', 'FUNC_0': 'SetData', 'CLASS_0': 'MLRClippingState', 'VAR_1': ''}
#ifndef __DX12DESCRIPTORHEAP_H__ #define __DX12DESCRIPTORHEAP_H__ #ifdef _USE_DIRECTX12 #include "DX12Device.h" #include "DX12CommandList.h" #include "log.h" class DX12DescriptorHeap { public: DX12DescriptorHeap(); virtual ~DX12DescriptorHeap() {} bool Create(DX12Device* device, DESCRIPTOR_HEAP_TYPE type, uint32...
#ifndef __DX12DESCRIPTORHEAP_H__ #define __DX12DESCRIPTORHEAP_H__ #ifdef _USE_DIRECTX12 #include "DX12Device.h" #include "DX12CommandList.h" #include "log.h" class VAR_0 { public: FUNC_0(); virtual ~FUNC_0() {} bool Create(DX12Device* device, DESCRIPTOR_HEAP_TYPE type, uint32 numDescriptors, bool shaderVisiblity...
0.205324
{'VAR_0': 'DX12DescriptorHeap', 'FUNC_0': 'DX12DescriptorHeap', 'FUNC_1': 'Apply', 'VAR_1': 'commandList', 'VAR_2': 'index', 'FUNC_2': 'GetGPUHandle', 'FUNC_3': 'GetIndexStartAllocation', 'CLASS_0': 'revDescriptorHeap'}
/**************************************************************************** * examples/lvgdemo/lvgldemo.c * * Copyright (C) 2019 <NAME>. All rights reserved. * Author: <NAME> <<EMAIL>> * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the fol...
/**************************************************************************** * examples/lvgdemo/lvgldemo.c * * Copyright (C) 2019 <NAME>. All rights reserved. * Author: <NAME> <<EMAIL>> * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the fol...
0.794381
{'IMPORT_0': 'nuttx/config.h', 'IMPORT_1': 'sys/boardctl.h', 'IMPORT_2': 'time.h', 'IMPORT_3': 'graphics/lvgl.h', 'IMPORT_4': 'fbdev.h', 'IMPORT_5': 'tp_cal.h', 'IMPORT_6': 'demo.h', 'IMPORT_7': 'lv_test_theme_1.h', 'IMPORT_8': 'lv_test_theme_2.h', 'VAR_0': 'CONFIG_LIB_BOARDCTL', 'VAR_1': 'CONFIG_NSH_ARCHINIT', 'VAR_2'...
// atoi.c int atoi(string str) { int v; if (!stringp(str) || !sscanf(str, "%d", v)) return 0; return v; }
// atoi.c int FUNC_0(CLASS_0 str) { int VAR_0; if (!FUNC_1(str) || !FUNC_2(str, "%d", VAR_0)) return 0; return VAR_0; }
0.662334
{'FUNC_0': 'atoi', 'CLASS_0': 'string', 'VAR_0': 'v', 'FUNC_1': 'stringp', 'FUNC_2': 'sscanf'}
// // LoginViewController.h // LoginModule // // Created by gaopeng on 2019/5/20. // Copyright © 2019 gaopeng. All rights reserved. // #import <UIKit/UIKit.h> NS_ASSUME_NONNULL_BEGIN @interface LoginViewController : UIViewController @property (nonatomic, copy) void(^loginResponse)(id result); @end NS_ASSUME_N...
// // LoginViewController.h // LoginModule // // Created by gaopeng on 2019/5/20. // Copyright © 2019 gaopeng. All rights reserved. // #import <UIKit/UIKit.h> CLASS_0 @VAR_0 LoginViewController : FUNC_0 @VAR_1 (VAR_2, VAR_3) void(^VAR_4)(CLASS_1 VAR_5); @CLASS_2 VAR_6
0.985062
{'CLASS_0': 'NS_ASSUME_NONNULL_BEGIN', 'VAR_0': 'interface', 'FUNC_0': 'UIViewController', 'VAR_1': 'property', 'VAR_2': 'nonatomic', 'VAR_3': 'copy', 'VAR_4': 'loginResponse', 'CLASS_1': 'id', 'VAR_5': 'result', 'CLASS_2': 'end', 'VAR_6': 'NS_ASSUME_NONNULL_END'}
#include "_aqb.h" #include <clib/exec_protos.h> #include <inline/exec.h> void _ExecNode_CONSTRUCTOR (ExecNode *n, UBYTE ln_Type, BYTE ln_Pri, STRPTR ln_Name) { DPRINTF ("_ExecNode_CONSTRUCTOR: n=0x%08lx, ln_Type=%d, ln_Pri=%d, ln_Name=%s\n", n, ln_Type, ln_Pri, ln_Name ? ln_Name : (STRPTR)"NULL"); n->n.ln_Suc...
#include "_aqb.h" #include <IMPORT_0> #include <IMPORT_1> void FUNC_0 (CLASS_0 *VAR_0, UBYTE VAR_1, CLASS_1 ln_Pri, CLASS_2 VAR_2) { FUNC_1 ("_ExecNode_CONSTRUCTOR: n=0x%08lx, ln_Type=%d, ln_Pri=%d, ln_Name=%s\n", VAR_0, VAR_1, ln_Pri, VAR_2 ? VAR_2 : (ID_0)"NULL"); VAR_0->VAR_0.VAR_3 = NULL; VAR_0->VAR_0...
0.565345
{'IMPORT_0': 'clib/exec_protos.h', 'IMPORT_1': 'inline/exec.h', 'FUNC_0': '_ExecNode_CONSTRUCTOR', 'CLASS_0': 'ExecNode', 'VAR_0': 'n', 'VAR_1': 'ln_Type', 'CLASS_1': 'BYTE', 'CLASS_2': 'STRPTR', 'ID_0': 'STRPTR', 'VAR_2': 'ln_Name', 'FUNC_1': 'DPRINTF', 'VAR_3': 'ln_Succ', 'FUNC_2': '_ExecList_CONSTRUCTOR', 'CLASS_3':...
{ { 25967493, -14356035, 29566456, 3660896, -12694345, 4014787, 27544626, -11754271, -6079156, 2047605 }, { -12545711, 934262, -2722910, 3049990, -727428, 9406986, 12720692, 5043384, 19500929, -15469378 }, { -8738181, 4489570, 9688441, -14785194, 10184609, -12363380, 29287919, 11864899, -24514362, -4438546 } }, {...
{ { 25967493, -14356035, 29566456, 3660896, -12694345, 4014787, 27544626, -11754271, -6079156, 2047605 }, { -12545711, 934262, -2722910, 3049990, -727428, 9406986, 12720692, 5043384, 19500929, -15469378 }, { -8738181, 4489570, 9688441, -14785194, 10184609, -12363380, 29287919, 11864899, -24514362, -4438546 } }, {...
0.265667
{}
#include "stdarg.h" #include "stdio.h" int fprintf(FILE *fp, const char *format, ...) { int ret; va_list arg; va_start(arg, format); ret = vfprintf(fp, format, arg); va_end(arg); return ret; }
#include "IMPORT_0" #include "stdio.h" int FUNC_0(CLASS_0 *VAR_0, const char *VAR_1, ...) { int VAR_2; CLASS_1 arg; va_start(arg, VAR_1); VAR_2 = FUNC_1(VAR_0, VAR_1, arg); va_end(arg); return VAR_2; }
0.915528
{'IMPORT_0': 'stdarg.h', 'FUNC_0': 'fprintf', 'CLASS_0': 'FILE', 'VAR_0': 'fp', 'VAR_1': 'format', 'VAR_2': 'ret', 'CLASS_1': 'va_list', 'FUNC_1': 'vfprintf'}
/* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NBIOT-RRC-Definitions" * found in "/home/lixh/enb_folder/openair2/RRC/LTE/MESSAGES/asn1c/ASN1_files/lte-rrc-14.7.0.asn1" * `asn1c -pdu=all -fcompound-names -gen-PER -no-gen-OER -no-gen-example -D /home/lixh/enb_folder/cmake_targets/lte...
/* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NBIOT-RRC-Definitions" * found in "/home/lixh/enb_folder/openair2/RRC/LTE/MESSAGES/asn1c/ASN1_files/lte-rrc-14.7.0.asn1" * `asn1c -pdu=all -fcompound-names -gen-PER -no-gen-OER -no-gen-example -D /home/lixh/enb_folder/cmake_targets/lte...
0.809418
{'VAR_0': '_LTE_NPUSCH_ConfigCommon_NB_r13_H_', 'IMPORT_0': 'asn_application.h', 'IMPORT_1': 'NativeEnumerated.h', 'IMPORT_2': 'LTE_UL-ReferenceSignalsNPUSCH-NB-r13.h', 'IMPORT_3': 'LTE_ACK-NACK-NumRepetitions-NB-r13.h', 'IMPORT_4': 'asn_SEQUENCE_OF.h', 'IMPORT_5': 'constr_SEQUENCE_OF.h', 'IMPORT_6': 'NativeInteger.h',...
/** * pm_genpd_name_poweron - Restore power to a given PM domain and its masters. * @domain_name: Name of the PM domain to power up. */ int pm_genpd_name_poweron(const char *domain_name) { struct generic_pm_domain *genpd; genpd = pm_genpd_lookup_name(domain_name); return genpd ? pm_genpd_poweron(genpd) : -EINVAL;...
/** * pm_genpd_name_poweron - Restore power to a given PM domain and its masters. * @domain_name: Name of the PM domain to power up. */ int pm_genpd_name_poweron(const char *VAR_0) { struct CLASS_0 *VAR_1; VAR_1 = FUNC_0(VAR_0); return VAR_1 ? FUNC_1(VAR_1) : -EINVAL; }
0.638072
{'VAR_0': 'domain_name', 'CLASS_0': 'generic_pm_domain', 'VAR_1': 'genpd', 'FUNC_0': 'pm_genpd_lookup_name', 'FUNC_1': 'pm_genpd_poweron'}
/** * Copyright (C) 2017 Alibaba Group Holding Limited. All Rights Reserved. * * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * ...
/** * Copyright (C) 2017 Alibaba Group Holding Limited. All Rights Reserved. * * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * ...
0.426576
{'VAR_0': '__media_native_buffer_h__', 'VAR_1': 'fourcc', 'VAR_2': 'bo', 'VAR_3': 'offsets', 'VAR_4': 'size', 'VAR_5': 'usedByDisplay', 'VAR_6': 'cropW'}
#pragma once #ifdef DEBUGMENU typedef void (*TriggerFunc)(void); struct Menu; struct MenuEntry { int type; const char *name; MenuEntry *next; RwRect r; Menu *menu; MenuEntry(const char *name); virtual ~MenuEntry(void) { free((void*)name); } }; typedef MenuEntry DebugMenuEntry; MenuEntry *DebugMenuAddInt8(...
#pragma once #ifdef DEBUGMENU typedef void (*CLASS_0)(void); struct CLASS_1; struct CLASS_2 { int VAR_1; const char *VAR_2; CLASS_2 *VAR_3; RwRect VAR_4; CLASS_1 *menu; VAR_0(const char *VAR_2); CLASS_3 ~VAR_0(void) { VAR_5(VAR_6(void*)VAR_2); } }; typedef CLASS_2 ID_0; CLASS_2 *FUNC_0(const char *VAR_7, ...
0.867434
{'CLASS_0': 'TriggerFunc', 'CLASS_1': 'Menu', 'CLASS_2': 'MenuEntry', 'VAR_0': 'MenuEntry', 'VAR_1': 'type', 'VAR_2': 'name', 'VAR_3': 'next', 'VAR_4': 'r', 'CLASS_3': 'virtual', 'VAR_5': 'free', 'VAR_6': '', 'ID_0': 'DebugMenuEntry', 'CLASS_4': 'DebugMenuEntry', 'FUNC_0': 'DebugMenuAddInt8', 'VAR_7': 'path', 'VAR_8': ...
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #ifndef __nsScriptableUConv_h_ #d...
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #ifndef __nsScriptableUConv_h_ #d...
0.002562
{}
/* * ===================================================================================== * * Filename: CSCDQM_Collection.h * * Description: Histogram Booking Collection Management Class * * Version: 1.0 * Created: 10/30/2008 04:40:38 PM * Revision: none * Compiler: g...
/* * ===================================================================================== * * Filename: CSCDQM_Collection.h * * Description: Histogram Booking Collection Management Class * * Version: 1.0 * Created: 10/30/2008 04:40:38 PM * Revision: none * Compiler: g...
0.04953
{'VAR_0': 'XML_BOOK_HISTO_TITLE', 'VAR_1': 'XML_BOOK_ONDEMAND', 'CLASS_0': 'HistoName'}
#ifndef _THREADPOOL_H_ #define _THREADPOOL_H_ #include <pthread.h> #include "condition.h" typedef struct task { void *(*run)(void *arg); //指针函数(即这个任务要去做什么事情) void *arg; // 参数 struct task *next; // 指向下一个任务的指针 } task_t; typedef struct threadpool //线程池结构体 { condition_t ready; ...
#ifndef VAR_0 #define VAR_0 #include <pthread.h> #include "IMPORT_0" typedef struct task { void *(*run)(void *VAR_1); //指针函数(即这个任务要去做什么事情) void *VAR_1; // 参数 struct task *VAR_2; // 指向下一个任务的指针 } ID_0; typedef struct CLASS_1 //线程池结构体 { CLASS_2 VAR_3; // 任务准备就绪或者线程池销毁通知 CL...
0.781089
{'VAR_0': '_THREADPOOL_H_', 'IMPORT_0': 'condition.h', 'VAR_1': 'arg', 'VAR_2': 'next', 'ID_0': 'task_t', 'CLASS_0': 'task_t', 'CLASS_1': 'threadpool', 'CLASS_2': 'condition_t', 'VAR_3': 'ready', 'VAR_4': 'first', 'VAR_5': 'idle', 'VAR_6': 'max_threads', 'ID_1': 'threadpool_t', 'CLASS_3': 'threadpool_t', 'FUNC_0': 'thr...
// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef EXTENSIONS_BROWSER_API_DOCUMENT_SCAN_DOCUMENT_SCAN_INTERFACE_H_ #define EXTENSIONS_BROWSER_API_DOCUMENT_SCAN_DOCUMENT_SCAN_INTERFACE_H_ #include ...
// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef EXTENSIONS_BROWSER_API_DOCUMENT_SCAN_DOCUMENT_SCAN_INTERFACE_H_ #define EXTENSIONS_BROWSER_API_DOCUMENT_SCAN_DOCUMENT_SCAN_INTERFACE_H_ #include ...
0.226223
{'VAR_0': 'DocumentScanInterface', 'FUNC_0': 'DocumentScanInterface', 'CLASS_0': 'DocumentScanInterface', 'VAR_1': 'ScannerDescription', 'FUNC_1': 'ScannerDescription', 'CLASS_1': 'std', 'VAR_2': 'model', 'VAR_3': 'error', 'VAR_4': 'resolution_dpi'}
/* SPDX-License-Identifier: BSD-3-Clause * Copyright(c) 2010-2016 Intel Corporation */ /* Test prototypes */ int test_table_hash_cuckoo(void); int test_table_lpm(void); int test_table_lpm_ipv6(void); int test_table_array(void); #ifdef RTE_LIB_ACL int test_table_acl(void); #endif int test_table_hash_unoptimized(void)...
/* SPDX-License-Identifier: BSD-3-Clause * Copyright(c) 2010-2016 Intel Corporation */ /* Test prototypes */ int test_table_hash_cuckoo(void); int FUNC_0(void); int FUNC_1(void); int FUNC_2(void); #ifdef VAR_0 int FUNC_3(void); #endif int FUNC_4(void); int FUNC_5(void); int FUNC_6(void); int test_table_stub(void); ...
0.828969
{'FUNC_0': 'test_table_lpm', 'FUNC_1': 'test_table_lpm_ipv6', 'FUNC_2': 'test_table_array', 'VAR_0': 'RTE_LIB_ACL', 'FUNC_3': 'test_table_acl', 'FUNC_4': 'test_table_hash_unoptimized', 'FUNC_5': 'test_table_hash_lru', 'FUNC_6': 'test_table_hash_ext', 'CLASS_0': 'table_test', 'VAR_1': 'table_tests', 'VAR_2': 'n_table_te...
#ifndef __BL_NONBLOCK_MPMC_BOUNDED_PRODUCER_MULTISLOT_H__ #define __BL_NONBLOCK_MPMC_BOUNDED_PRODUCER_MULTISLOT_H__ #include <bl/nonblock/libexport.h> #include <bl/nonblock/mpmc_b_common.h> #include <bl/base/platform.h> #include <bl/base/cache.h> #include <bl/base/alignment.h> #include <bl/base/allocator.h> #include <...
#ifndef VAR_0 #define VAR_0 #include <IMPORT_0> #include <IMPORT_1> #include <IMPORT_2> #include <IMPORT_3> #include <IMPORT_4> #include <IMPORT_5> #include <IMPORT_6> #include <bl/base/integer_manipulation.h> #include <bl/base/utility.h> #include <bl/base/atomic.h> #ifdef __cplusplus extern "C" { #endif /*----------...
0.58023
{'VAR_0': '__BL_NONBLOCK_MPMC_BOUNDED_PRODUCER_MULTISLOT_H__', 'IMPORT_0': 'bl/nonblock/libexport.h', 'IMPORT_1': 'bl/nonblock/mpmc_b_common.h', 'IMPORT_2': 'bl/base/platform.h', 'IMPORT_3': 'bl/base/cache.h', 'IMPORT_4': 'bl/base/alignment.h', 'IMPORT_5': 'bl/base/allocator.h', 'IMPORT_6': 'bl/base/error.h', 'CLASS_0'...
#ifndef __MONO_NATIVE_MSCORLIB_SYSTEM_ISERVICEPROVIDER_H #define __MONO_NATIVE_MSCORLIB_SYSTEM_ISERVICEPROVIDER_H #include <mscorlib/System/mscorlib_System_Object.h> namespace mscorlib { namespace System { class Type; } } namespace mscorlib { namespace System { class IServiceProvider { public: I...
#ifndef VAR_0 #define VAR_0 #include <IMPORT_0> namespace mscorlib { namespace VAR_1 { class Type; } } namespace mscorlib { namespace VAR_1 { class VAR_2 { public: FUNC_0(VAR_3 *nativeObject) { __mscorlib_System_IServiceProvider = nativeObject; }; ~FUNC_0() { }; VAR_...
0.648282
{'VAR_0': '__MONO_NATIVE_MSCORLIB_SYSTEM_ISERVICEPROVIDER_H', 'IMPORT_0': 'mscorlib/System/mscorlib_System_Object.h', 'VAR_1': 'System', 'VAR_2': 'IServiceProvider', 'FUNC_0': 'IServiceProvider', 'VAR_3': 'MonoObject', 'CLASS_0': 'MonoObject', 'VAR_4': 'value', 'CLASS_1': 'virtual', 'VAR_5': 'Object', 'FUNC_1': 'GetSer...
/** * Measure ADC voltage. * @param device Katherine device * @param channel_id Index of the measured ADC channel * @param voltage Retrieved voltage * @return Error code. */ int katherine_get_adc_voltage(katherine_device_t *device, unsigned char channel_id, float *voltage) { int res; res = katherine_cmd_g...
/** * Measure ADC voltage. * @param device Katherine device * @param channel_id Index of the measured ADC channel * @param voltage Retrieved voltage * @return Error code. */ int FUNC_0(CLASS_0 *device, unsigned char VAR_0, float *VAR_1) { int VAR_2; VAR_2 = FUNC_1(&device->control_socket, VAR_0); if (...
0.547557
{'FUNC_0': 'katherine_get_adc_voltage', 'CLASS_0': 'katherine_device_t', 'VAR_0': 'channel_id', 'VAR_1': 'voltage', 'VAR_2': 'res', 'FUNC_1': 'katherine_cmd_get_adc_voltage', 'VAR_3': 'crd'}
/** * @file registration.h * @author <NAME> <<EMAIL>> * @version 1.0 * * @section LICENSE * * The MIT License (MIT) * * Copyright (c) 2016 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to dea...
/** * @file registration.h * @author <NAME> <<EMAIL>> * @version 1.0 * * @section LICENSE * * The MIT License (MIT) * * Copyright (c) 2016 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to dea...
0.326424
{'VAR_0': '_REGISTRATION_H_', 'VAR_1': 'version_minor', 'VAR_2': 'packed', 'VAR_3': '_version_major', 'VAR_4': '_version_minor', 'VAR_5': 'bmbs_benchmarks'}
/** * This header is generated by class-dump-z 0.2a. * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. * * Source: (null) */ #import "WeChat-Structs.h" #import "IEmoticonPackageStateMgrExt.h" #import "IEmoticonPackageMgrExt.h" #import <XXUnknownSuperclass.h> // Unknown library @class UIImag...
/** * This header is generated by class-dump-z 0.2a. * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. * * Source: (null) */ #import "WeChat-Structs.h" #import "IEmoticonPackageStateMgrExt.h" #import "IEmoticonPackageMgrExt.h" #import <XXUnknownSuperclass.h> // Unknown library @class VAR_0,...
0.421423
{'VAR_0': 'UIImageView', 'CLASS_0': 'UIImageView', 'VAR_1': 'EmoticonStoreItem', 'CLASS_1': 'EmoticonStoreItem', 'CLASS_2': 'protocol', 'VAR_2': 'EmoticonStoreDownloadViewDelegate', 'VAR_3': 'XXUnknownSuperclass', 'VAR_4': '_m_freeToDownload', 'VAR_5': '_m_button', 'VAR_6': '_m_downloadButton', 'VAR_7': '_m_downloadedB...
// // MPRewardedVideoReward.h // // Copyright 2018-2020 Twitter, Inc. // Licensed under the MoPub SDK License Agreement // http://www.mopub.com/legal/sdk-license-agreement/ // #import <Foundation/Foundation.h> #import "MPReward.h" /** A constant that indicates that no currency type was specified with the reward....
// // MPRewardedVideoReward.h // // Copyright 2018-2020 Twitter, Inc. // Licensed under the MoPub SDK License Agreement // http://www.mopub.com/legal/sdk-license-agreement/ // #import <Foundation/Foundation.h> #import "MPReward.h" /** A constant that indicates that no currency type was specified with the reward....
0.352082
{'CLASS_0': 'NSString', 'VAR_0': 'kMPRewardedVideoRewardCurrencyTypeUnspecified'}
#ifndef ___NICE_KCPSERVER____ #define ___NICE_KCPSERVER____ #include <string> #include "Type.h" #include <memory> #include "Server.h" #include <unordered_map> #include <array> #include <list> #include <atomic> #include "Message.h" #include "NoCopy.h" #include <functional> #include "CopyablePtr.hpp" #include "Task.hpp" ...
#ifndef VAR_0 #define VAR_0 #include <IMPORT_0> #include "Type.h" #include <IMPORT_1> #include "IMPORT_2" #include <unordered_map> #include <IMPORT_3> #include <list> #include <IMPORT_4> #include "IMPORT_5" #include "NoCopy.h" #include <IMPORT_6> #include "IMPORT_7" #include "IMPORT_8" CLASS_0 VAR_1 { const i32 VAR_2...
0.575331
{'VAR_0': '___NICE_KCPSERVER____', 'IMPORT_0': 'string', 'IMPORT_1': 'memory', 'IMPORT_2': 'Server.h', 'IMPORT_3': 'array', 'IMPORT_4': 'atomic', 'IMPORT_5': 'Message.h', 'IMPORT_6': 'functional', 'IMPORT_7': 'CopyablePtr.hpp', 'IMPORT_8': 'Task.hpp', 'CLASS_0': 'namespace', 'VAR_1': 'nicehero', 'VAR_2': 'IKCP_OVERHEAD...
/* * Copyright (c) 2015 Intel Corporation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ...
/* * Copyright (c) 2015 Intel Corporation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ...
0.294439
{'IMPORT_0': 'zephyr.h', 'FUNC_0': 'CHECK_OUTPUT', 'VAR_0': 'failed', 'CLASS_0': 'atomic_val_t', 'VAR_1': 'value', 'FUNC_1': 'TC_PRINT', 'FUNC_2': 'atomic_nand', 'FUNC_3': 'atomic_test_and_set_bit', 'VAR_2': 'TC_FAIL', 'FUNC_4': 'TC_END_RESULT', 'FUNC_5': 'TC_END_REPORT'}
// // Copyright 2015, <NAME> <<EMAIL>> // // This file is free software: you may copy, redistribute and/or modify it // under the terms of the GNU General Public License as published by the // Free Software Foundation, either version 2 of the License, or (at your // option) any later version. // // This file is ...
// // Copyright 2015, <NAME> <<EMAIL>> // // This file is free software: you may copy, redistribute and/or modify it // under the terms of the GNU General Public License as published by the // Free Software Foundation, either version 2 of the License, or (at your // option) any later version. // // This file is ...
0.041113
{}
/******************************************************************************** ** Form generated from reading UI file 'mt_visionui.ui' ** ** Created by: Qt User Interface Compiler version 5.13.0 ** ** WARNING! All changes made in this file will be lost when recompiling UI file! **************************************...
/******************************************************************************** ** Form generated from reading UI file 'mt_visionui.ui' ** ** Created by: Qt User Interface Compiler version 5.13.0 ** ** WARNING! All changes made in this file will be lost when recompiling UI file! **************************************...
0.672501
{'IMPORT_0': 'QtWidgets/QApplication', 'IMPORT_1': 'QtWidgets/QGroupBox', 'IMPORT_2': 'QtWidgets/QHBoxLayout', 'IMPORT_3': 'QtWidgets/QPushButton', 'IMPORT_4': 'QtWidgets/QSpacerItem', 'IMPORT_5': 'QtWidgets/QSpinBox', 'IMPORT_6': 'QtWidgets/QVBoxLayout', 'VAR_0': 'class', 'CLASS_0': 'class', 'VAR_1': 'Ui_MT_VisionUI',...
// // Created by zhuangxk on 5/17/16. // template <class T> Stack<T>::Stack() : stack_top(Stack::BOTTOM) { } template <class T> Stack<T>::Stack(const Stack& s) : stack_top(s.stack_top) { for(int i = 0; i < s.stack_top; i++) { this->content[i] = s.content[i]; } } template <class T> Stack<T>::~Stack()...
// // Created by zhuangxk on 5/17/16. // template <class T> Stack<T>::Stack() : stack_top(Stack::BOTTOM) { } template <class T> Stack<T>::Stack(const Stack& s) : stack_top(s.stack_top) { for(int i = 0; i < s.stack_top; i++) { VAR_0->VAR_1[i] = s.VAR_1[i]; } } template <class T> Stack<T>::~Stack() { ...
0.258119
{'VAR_0': 'this', 'VAR_1': 'content', 'VAR_2': 'SIZE', 'FUNC_0': 'pop'}
#ifndef CHARACTER_LOADER_H #define CHARACTER_LOADER_H #include "VisibleLoader.h" #include "../BulletLoader/BulletBodyLoader.h" #include <Entities/VisibleObjects/Character.h> #include <Entities/PhysicsObjects/BulletVisibleObjectState.h> #include <Entities/PhysicsObjects/BulletControllable.h> class CharacterLoader {...
#ifndef VAR_0 #define VAR_0 #include "VisibleLoader.h" #include "IMPORT_0" #include <IMPORT_1> #include <Entities/PhysicsObjects/BulletVisibleObjectState.h> #include <IMPORT_2> CLASS_0 VAR_1 { private: VAR_2 visible_loader; CLASS_1 VAR_3; CLASS_2 VAR_4; IProjectileFactory &VAR_5; unsigned int species = 0;...
0.682862
{'VAR_0': 'CHARACTER_LOADER_H', 'IMPORT_0': '../BulletLoader/BulletBodyLoader.h', 'IMPORT_1': 'Entities/VisibleObjects/Character.h', 'IMPORT_2': 'Entities/PhysicsObjects/BulletControllable.h', 'CLASS_0': 'class', 'VAR_1': 'CharacterLoader', 'FUNC_0': 'CharacterLoader', 'VAR_2': 'VisibleLoader', 'CLASS_1': 'PhysBodyBuil...
#ifndef INTERACTION_MANAGER_H #define INTERACTION_MANAGER_H #include "common/AABB.h" #include "common/UID.h" #include "gui/layout/ViewType.h" #include "gui/layout/ViewTypeRange.h" #include "common/CoordinateFrame.h" #include "common/CoordinateFrameLinkingType.h" #include "common/PublicTypes.h" #include "logic/camer...
#ifndef INTERACTION_MANAGER_H #define INTERACTION_MANAGER_H #include "IMPORT_0" #include "IMPORT_1" #include "gui/layout/ViewType.h" #include "IMPORT_2" #include "common/CoordinateFrame.h" #include "IMPORT_3" #include "IMPORT_4" #include "logic/camera/CameraTypes.h" #include "logic/camera/CameraStartFrameType.h" #i...
0.605212
{'IMPORT_0': 'common/AABB.h', 'IMPORT_1': 'common/UID.h', 'IMPORT_2': 'gui/layout/ViewTypeRange.h', 'IMPORT_3': 'common/CoordinateFrameLinkingType.h', 'IMPORT_4': 'common/PublicTypes.h', 'IMPORT_5': 'logic/CrosshairsType.h', 'IMPORT_6': 'logic/interaction/InteractionModes.h', 'IMPORT_7': 'logic/interaction/InteractionH...
/******************************************************************************* can.c - description ------------------- begin : 28.02.2017 copyright : (C) 2017 by MHS-Elektronik GmbH & Co. KG, Germany ...
/******************************************************************************* can.c - description ------------------- begin : 28.02.2017 copyright : (C) 2017 by MHS-Elektronik GmbH & Co. KG, Germany ...
0.497775
{'IMPORT_0': 'mhs_g_messages.h', 'IMPORT_1': 'mhs_msg_types.h', 'IMPORT_2': 'main.h', 'VAR_0': '__WIN32__', 'VAR_1': 'FULL_DRIVER_FILE', 'VAR_2': 'J1939_ID1', 'VAR_3': 'J1939_ID2', 'VAR_4': 'J1939_ID3', 'VAR_5': 'J1939_ID4', 'VAR_6': 'J1939_ID2_IDX', 'VAR_7': 'SCAN_EVENT', 'CLASS_0': 'guint', 'VAR_8': 'RxDMessageTimeou...
#include <stdarg.h> extern "C" { #include "celix_errno.h" #include "celix_log.h" } class CelixLogInterface { public: virtual ~CelixLogInterface(){} virtual void gmock_mock_framework_log(framework_logger_pt logger, framework_log_level_t level, const char *func, const char *file, int line, const cha...
#include <IMPORT_0> extern "C" { #include "celix_errno.h" #include "IMPORT_1" } CLASS_0 VAR_0 { public: virtual ~FUNC_0(){} virtual VAR_2 FUNC_1(CLASS_1 VAR_3, framework_log_level_t VAR_4, const char *func, const char *file, int line, const char *fmsg) = 0; }; CLASS_0 VAR_5 : VAR_1 VAR_0 { pu...
0.58573
{'IMPORT_0': 'stdarg.h', 'IMPORT_1': 'celix_log.h', 'CLASS_0': 'class', 'VAR_0': 'CelixLogInterface', 'FUNC_0': 'CelixLogInterface', 'VAR_1': 'public', 'VAR_2': 'void', 'FUNC_1': 'gmock_mock_framework_log', 'CLASS_1': 'framework_logger_pt', 'VAR_3': 'logger', 'VAR_4': 'level', 'VAR_5': 'MockCelixLog', 'FUNC_2': 'MockCe...
/*************************************************************************************** * Original Author: <NAME> * Created: 2018-10-13 * Copyright: <NAME> (https://github.com/GabrieleGiuseppini) ***************************************************************************************/ #pra...
/*************************************************************************************** * Original Author: <NAME> * Created: 2018-10-13 * Copyright: <NAME> (https://github.com/GabrieleGiuseppini) ***************************************************************************************/ #pra...
0.300508
{'IMPORT_0': 'RenderParameters.h', 'IMPORT_1': 'GameOpenGL/ShaderManager.h', 'IMPORT_2': 'memory', 'IMPORT_3': 'optional', 'CLASS_0': 'namespace', 'CLASS_1': 'class', 'VAR_0': 'enum', 'VAR_1': 'TextNotificationType', 'ID_0': 'TextNotificationType', 'CLASS_2': 'TextNotificationType', 'VAR_2': 'NotificationText', 'VAR_3'...
#include <stdio.h> void loop1(void) { for (int x = 0; x < 10; x++) { printf("%d\n", x); } } void loop2(void) { int x = 0; while (x < 10) { printf("%d\n", x); x++; } } void loop3(void) { int x; x = 0; do { printf("Hello, World!\n"); } wh...
#include <stdio.h> void loop1(void) { for (int x = 0; x < 10; x++) { printf("%d\n", x); } } void loop2(void) { int x = 0; while (x < 10) { printf("%d\n", x); x++; } } void loop3(void) { int x; x = 0; do { printf("Hello, World!\n"); } wh...
0.079519
{}
#pragma once #ifdef HRZ_PLATFORM_WINDOWS #else #error Nah cant do that #endif
#pragma once #ifdef HRZ_PLATFORM_WINDOWS #else #error Nah cant do that #endif
0.737193
{}
#ifndef _IGCMC_H_ #define _IGCMC_H_ #include <cstddef> #include <string> #include <stdint.h> #include <vector> #ifdef _WIN32 #define __EXPORT__ __declspec(dllexport) #else #define __EXPORT__ __attribute__((visibility("default"))) #endif // Supported kernel argument attributes. struct cmc_resource_attibute { sta...
#ifndef _IGCMC_H_ #define _IGCMC_H_ #include <cstddef> #include <string> #include <stdint.h> #include <vector> #ifdef _WIN32 #define VAR_0 __declspec(dllexport) #else #define VAR_0 __attribute__((visibility("default"))) #endif // Supported kernel argument attributes. struct CLASS_1 { static constexpr const char...
0.244473
{'VAR_0': '__EXPORT__', 'CLASS_0': '__EXPORT__', 'CLASS_1': 'cmc_resource_attibute', 'VAR_1': 'read_only', 'VAR_2': 'sampler_t', 'VAR_3': 'Image1d', 'VAR_4': 'cmc_arg_kind', 'CLASS_2': 'cmc_arg_kind', 'VAR_5': 's', 'VAR_6': 'kind', 'VAR_7': 'offset', 'VAR_8': 'access', 'VAR_9': 'num_args', 'VAR_10': 'arg_descs', 'VAR_1...
/* -------------------------------------------------------------------------------- This source file is part of SkyX. Visit --- Copyright (C) 2009 <NAME> <<EMAIL>> <<EMAIL>> This program is free software; you can redistribute it and/or modify it under the terms of the GNU Le...
/* -------------------------------------------------------------------------------- This source file is part of SkyX. Visit --- Copyright (C) 2009 <NAME> <<EMAIL>> <<EMAIL>> This program is free software; you can redistribute it and/or modify it under the terms of the GNU Le...
0.448138
{'VAR_0': '_SkyX_VClouds_DataManager_H_', 'IMPORT_0': 'FastFakeRandom.h', 'VAR_1': 'Ellipsoid', 'CLASS_0': 'Ellipsoid', 'VAR_2': 'hum', 'VAR_3': 'act', 'VAR_4': 'VOL_TEX0', 'FUNC_0': 'update', 'VAR_5': 'mUpdateTime', 'VAR_6': 'Humidity', 'FUNC_1': 'addEllipsoid', 'VAR_7': 'e', 'FUNC_2': 'forceToUpdateData', 'VAR_8': 'c...
#pragma once // Copyright (c) 2015 <NAME>. License MIT (http://www.opensource.org/licenses/mit-license.php) #include <spuce/typedefs.h> #include <cmath> #include <vector> namespace spuce { //! \file //! \brief Calculate Allpass coefficients for halfband bireciprocal wave filter //! assuming elliptic frequency response...
#pragma once // Copyright (c) 2015 <NAME>. License MIT (http://www.opensource.org/licenses/mit-license.php) #include <IMPORT_0> #include <IMPORT_1> #include <vector> CLASS_0 spuce { //! \file //! \brief Calculate Allpass coefficients for halfband bireciprocal wave filter //! assuming elliptic frequency response //! \i...
0.315624
{'IMPORT_0': 'spuce/typedefs.h', 'IMPORT_1': 'cmath', 'CLASS_0': 'namespace', 'VAR_0': 'float_type', 'CLASS_1': 'float_type', 'VAR_1': 'a0', 'VAR_2': 'L'}
/* Return valid, unused, channel for a passive scan to reset the RF */ u8 il_get_single_channel_number(struct il_priv *il, enum nl80211_band band) { const struct il_channel_info *ch_info; int i; u8 channel = 0; u8 min, max; if (band == NL80211_BAND_5GHZ) { min = 14; max = il->channel_count; } else { min = 0...
/* Return valid, unused, channel for a passive scan to reset the RF */ u8 FUNC_0(struct il_priv *VAR_0, enum CLASS_0 band) { const struct CLASS_1 *ch_info; int i; u8 channel = 0; u8 VAR_1, VAR_2; if (band == NL80211_BAND_5GHZ) { VAR_1 = 14; VAR_2 = VAR_0->channel_count; } else { VAR_1 = 0; VAR_2 = 14; } ...
0.421597
{'FUNC_0': 'il_get_single_channel_number', 'VAR_0': 'il', 'CLASS_0': 'nl80211_band', 'CLASS_1': 'il_channel_info', 'VAR_1': 'min', 'VAR_2': 'max', 'VAR_3': 'channel_info', 'VAR_4': 'staging', 'FUNC_1': 'il_is_channel_valid'}
#ifndef DMR_C_LINEARIZE_H #define DMR_C_LINEARIZE_H /* * Linearize - walk the parse tree and generate a linear version * of it and the basic blocks. * * Copyright (C) 2004 <NAME> * Copyright (C) 2004 <NAME> */ #include <lib.h> #include <allocate.h> #include <token.h> #include <parse.h> #include <symbol.h> #ifdef __c...
#ifndef VAR_0 #define VAR_0 /* * Linearize - walk the parse tree and generate a linear version * of it and the basic blocks. * * Copyright (C) 2004 <NAME> * Copyright (C) 2004 <NAME> */ #include <IMPORT_0> #include <IMPORT_1> #include <IMPORT_2> #include <IMPORT_3> #include <IMPORT_4> #ifdef VAR_1 extern "C" { #endi...
0.616183
{'VAR_0': 'DMR_C_LINEARIZE_H', 'IMPORT_0': 'lib.h', 'IMPORT_1': 'allocate.h', 'IMPORT_2': 'token.h', 'IMPORT_3': 'parse.h', 'IMPORT_4': 'symbol.h', 'VAR_1': '__cplusplus', 'CLASS_0': 'instruction', 'VAR_2': 'instruction', 'VAR_3': 'basic_block_list', 'CLASS_1': 'basic_block_list', 'VAR_4': 'struct', 'VAR_5': 'basic_blo...
//+------------------------------------------------------------------------- // // Microsoft Windows // // Copyright (C) Microsoft Corporation // // File: queue.h // //-------------------------------------------------------------------------- #if !defined( _QUEUE_H_ ) #define _QUEUE_H_ #define SMA...
//+------------------------------------------------------------------------- // // Microsoft Windows // // Copyright (C) Microsoft Corporation // // File: queue.h // //-------------------------------------------------------------------------- #if !defined( _QUEUE_H_ ) #define _QUEUE_H_ #define SMA...
0.165589
{'ID_0': 'IP_ADDR', 'CLASS_0': 'IP_ADDR', 'VAR_0': 'm_pHead', 'VAR_1': 'pchIPAddr', 'VAR_2': 'pbSendMessage'}
// Copyright 2017-2019 <NAME>, <NAME> #pragma once #include "UObject/Object.h" #include "DlgNodeData.generated.h" /** * Abstract base class for node data * Defining class via inheriting from UNYTaskBase outside of the plugin is possible both in Blueprint and C++ * Extend this class to define additional data you...
// Copyright 2017-2019 <NAME>, <NAME> #pragma once #include "IMPORT_0" #include "DlgNodeData.generated.h" /** * Abstract base class for node data * Defining class via inheriting from UNYTaskBase outside of the plugin is possible both in Blueprint and C++ * Extend this class to define additional data you want to...
0.776671
{'IMPORT_0': 'UObject/Object.h', 'FUNC_0': 'UCLASS', 'VAR_0': 'BlueprintType', 'VAR_1': 'Blueprintable', 'VAR_2': 'EditInlineNew', 'VAR_3': 'Abstract', 'VAR_4': 'class', 'CLASS_0': 'DLGSYSTEM_API', 'VAR_5': 'UDlgNodeData', 'VAR_6': 'public'}
// // UIViewController+UIScreenBrightness.h // PPMakerExample // // Created by PPAbner on 2019/10/31. // Copyright © 2019 PPAbner. All rights reserved. // #import <UIKit/UIKit.h> @interface UIViewController (UIScreenBrightness) /// 是否更新用户设置的亮度,默认NO。 /// 用户设置包含以下2种情况: /// 1.不活跃状态(UIApplicationStateInactive)时,【下拉通...
// // UIViewController+UIScreenBrightness.h // PPMakerExample // // Created by PPAbner on 2019/10/31. // Copyright © 2019 PPAbner. All rights reserved. // #import <UIKit/UIKit.h> @CLASS_0 FUNC_0 (UIScreenBrightness) /// 是否更新用户设置的亮度,默认NO。 /// 用户设置包含以下2种情况: /// 1.不活跃状态(UIApplicationStateInactive)时,【下拉通知栏】更改亮度,更新用户...
0.593521
{'CLASS_0': 'interface', 'FUNC_0': 'UIViewController', 'ID_0': 'nonatomic', 'VAR_0': 'isNeedToUpdateWhenUserBrightnessChanged', 'VAR_1': 'setupMaxBrightness', 'VAR_2': 'changeToUserBrightnessWhenViewDidDisappear', 'VAR_3': 'end'}
/* * File : ServiceDef.h * Remark : Service number and call service definition used by NanoOS API * */ #ifndef SERVICE_DEF_H #define SERVICE_DEF_H #define SVC__ZERO 0 #define SVC__GET_OS_VERSION 1 #define SVC__GET_OS_NAME 2 #define SVC__GET_SYSTEM_CLOCK 3 #define SVC__RESERVED4 4 #define...
/* * File : ServiceDef.h * Remark : Service number and call service definition used by NanoOS API * */ #ifndef SERVICE_DEF_H #define SERVICE_DEF_H #define SVC__ZERO 0 #define VAR_0 1 #define SVC__GET_OS_NAME 2 #define VAR_1 3 #define VAR_2 4 #define VAR_3 5 #define VAR_4 6 #defi...
0.306744
{'VAR_0': 'SVC__GET_OS_VERSION', 'VAR_1': 'SVC__GET_SYSTEM_CLOCK', 'VAR_2': 'SVC__RESERVED4', 'VAR_3': 'SVC__DEBUG_CHAR_OUT', 'VAR_4': 'SVC__RESERVED6', 'VAR_5': 'SVC__CREATE_THREAD', 'VAR_6': 'SVC__EXIT_THREAD', 'VAR_7': 'SVC__WAIT_FOR_OBJECT', 'VAR_8': 'SVC__CREATE_EVENT', 'VAR_9': 'SVC__SET_LAST_ERROR', 'VAR_10': 'S...
////////////////////////////////////////////////////////////////////////// // // // wapi.h - prototypes WinAPI functions // // Created by: // // @nummer aka @nu...
////////////////////////////////////////////////////////////////////////// // // // wapi.h - prototypes WinAPI functions // // Created by: // // @nummer aka @nu...
0.814402
{'IMPORT_0': 'Windows.h', 'CLASS_0': 'LONG', 'ID_0': 'NTSTATUS', 'VAR_0': 'NTSTATUS', 'VAR_1': 'DEBUG', 'VAR_2': 'WAPI_NO_LOG', 'VAR_3': 'WAPI_FULL_LOG', 'IMPORT_1': 'stdio.h', 'CLASS_1': 'namespace', 'CLASS_2': 'HMODULE', 'FUNC_0': 'GetNTDLLHmodule', 'CLASS_3': '_NT_PRODUCT_TYPE', 'VAR_4': 'NtProductWinNt', 'VAR_5': '...
#ifndef CALCULADORA_H #define CALCULADORA_H #include <iostream> using namespace std; template <typename Data> class Calculadora { public: Calculadora(){}; ~Calculadora(){}; Data add(Data &d1, const Data &d2){return d1+d2;} Data sub(Data &d1, const Data &d2){return d1-d2; } ...
#ifndef VAR_0 #define VAR_0 #include <iostream> CLASS_0 namespace std; VAR_1 <VAR_2 Data> class VAR_3 { public: FUNC_0(){}; ~FUNC_0(){}; Data add(Data &VAR_4, const Data &d2){return VAR_4+d2;} Data sub(Data &VAR_4, const Data &d2){return VAR_4-d2; } Data FUNC_1(Data &VAR_4...
0.420039
{'VAR_0': 'CALCULADORA_H', 'CLASS_0': 'using', 'VAR_1': 'template', 'VAR_2': 'typename', 'VAR_3': 'Calculadora', 'FUNC_0': 'Calculadora', 'VAR_4': 'd1', 'FUNC_1': 'mul', 'FUNC_2': 'div'}
#pragma once #include <Config/Config.h> #include <Wallet/WalletManager.h> #include <Net/Clients/RPC/RPC.h> #include <Net/Servers/RPC/RPCMethod.h> #include <Net/Tor/TorManager.h> #include <Net/Tor/TorAddressParser.h> #include <Common/Util/FileUtil.h> #include <optional> class ReceiveHandler : public RPCMethod { public...
#pragma once #include <IMPORT_0> #include <IMPORT_1> #include <IMPORT_2> #include <IMPORT_3> #include <IMPORT_4> #include <IMPORT_5> #include <IMPORT_6> #include <optional> CLASS_0 VAR_0 : public VAR_1 { public: FUNC_0(VAR_2 VAR_3& VAR_4) : FUNC_1(VAR_4) { } CLASS_2 ~FUNC_0() = VAR_6; RPC::VAR_8 FUNC_2(VAR_2 VA...
0.832884
{'IMPORT_0': 'Config/Config.h', 'IMPORT_1': 'Wallet/WalletManager.h', 'IMPORT_2': 'Net/Clients/RPC/RPC.h', 'IMPORT_3': 'Net/Servers/RPC/RPCMethod.h', 'IMPORT_4': 'Net/Tor/TorManager.h', 'IMPORT_5': 'Net/Tor/TorAddressParser.h', 'IMPORT_6': 'Common/Util/FileUtil.h', 'CLASS_0': 'class', 'VAR_0': 'ReceiveHandler', 'FUNC_0...
// Copyright 2013 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #define SIG_REGS(ctxt) (((UcontextT*)(ctxt))->uc_mcontext) #define SIG_R0(info, ctxt) (SIG_REGS(ctxt).__gregs[REG_R0]) #define SIG_R1(info, ctxt) (SIG_REGS(ct...
// Copyright 2013 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #define FUNC_0(VAR_0) (((UcontextT*)(ctxt))->uc_mcontext) #define FUNC_1(VAR_1, VAR_0) (SIG_REGS(ctxt).__gregs[REG_R0]) #define FUNC_2(VAR_1, VAR_0) (SIG_REGS...
0.831445
{'FUNC_0': 'SIG_REGS', 'VAR_0': 'ctxt', 'FUNC_1': 'SIG_R0', 'VAR_1': 'info', 'FUNC_2': 'SIG_R1', 'FUNC_3': 'SIG_R2', 'FUNC_4': 'SIG_R3', 'FUNC_5': 'SIG_R4', 'FUNC_6': 'SIG_R7', 'FUNC_7': 'SIG_R8', 'FUNC_8': 'SIG_R9', 'FUNC_9': 'SIG_R10', 'FUNC_10': 'SIG_FP', 'FUNC_11': 'SIG_IP', 'FUNC_12': 'SIG_SP', 'FUNC_13': 'SIG_PC'...
/************************************************************************/ /* * StatsListProc: Subclassed window procedure for list box. */ long CALLBACK StatsListProc(HWND hwnd, UINT message, UINT wParam, LONG lParam) { switch (message) { case WM_KEYDOWN: if (HANDLE_WM_KEYDOWN_BLAK(hwnd, wParam, lPar...
/************************************************************************/ /* * StatsListProc: Subclassed window procedure for list box. */ long CALLBACK StatsListProc(HWND hwnd, UINT message, UINT wParam, LONG lParam) { switch (message) { case VAR_0: if (HANDLE_WM_KEYDOWN_BLAK(hwnd, wParam, lParam, S...
0.326649
{'VAR_0': 'WM_KEYDOWN', 'FUNC_0': 'HANDLE_MSG', 'VAR_1': 'StatsListVScroll', 'VAR_2': 'StatsListLButton', 'VAR_3': 'WM_RBUTTONDOWN', 'VAR_4': 'WM_KILLFOCUS', 'VAR_5': 'lpfnDefStatListProc'}
/* Copyright (c) 2018 The Linux Foundation. All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 and * only version 2 as published by the Free Software Foundation. * * This program is distributed in the hope ...
/* Copyright (c) 2018 The Linux Foundation. All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 and * only version 2 as published by the Free Software Foundation. * * This program is distributed in the hope ...
0.770168
{'VAR_0': 'TRACE_SYSTEM', 'VAR_1': 'TRACE_HEADER_MULTI_READ', 'IMPORT_0': 'linux/types.h', 'VAR_2': 'DEV_NAME_NONE', 'FUNC_0': 'DECLARE_EVENT_CLASS', 'VAR_3': 'const', 'VAR_4': 'struct', 'VAR_5': 'device', 'VAR_6': 'dev', 'VAR_7': 'char', 'VAR_8': 'name', 'VAR_9': 'bool', 'VAR_10': 'cached', 'VAR_11': 'hlos_accessible'...
/////////////////////////////////////////////////////////////////////////// // // Copyright(C) 1997-1998 Microsoft Corporation all rights reserved. // // Module: sdoschema.h // // Project: Everest // // Description: SDO Schema Class Declaration // // Author: TLP 9/1/98 // //////////////////...
/////////////////////////////////////////////////////////////////////////// // // Copyright(C) 1997-1998 Microsoft Corporation all rights reserved. // // Module: sdoschema.h // // Project: Everest // // Description: SDO Schema Class Declaration // // Author: TLP 9/1/98 // //////////////////...
0.375143
{'VAR_0': '_INC_SDO_SCHEMA_H_', 'IMPORT_0': 'ias.h', 'IMPORT_1': 'sdohelperfuncs.h', 'IMPORT_2': 'sdo.h', 'CLASS_0': '_SCHEMA_PROPERTY_INFO', 'VAR_1': 'lpszDisplayName', 'ID_0': 'SCHEMA_PROPERTY_INFO', 'VAR_2': 'pOptionalProperties', 'FUNC_0': 'BEGIN_SCHEMA_PROPERTY_MAP', 'FUNC_1': 'DEFINE_SCHEMA_PROPERTY', 'VAR_3': 's...
/* * Pseudoknot Class * Pseudoknot class stores and accesses pseudoknotted pairs. * Files with Pseudoknot class are: basepair.cpp, basepair.h, Pseudoknot.cpp, Pseudoknot.h * * (c) 2013 * Mathews Lab, University of Rochester Medical Center */ #include "basepair.h" #include <vector> #include <algorithm> using n...
/* * Pseudoknot Class * Pseudoknot class stores and accesses pseudoknotted pairs. * Files with Pseudoknot class are: basepair.cpp, basepair.h, Pseudoknot.cpp, Pseudoknot.h * * (c) 2013 * Mathews Lab, University of Rochester Medical Center */ #include "IMPORT_0" #include <IMPORT_1> #include <IMPORT_2> CLASS_0 ...
0.531977
{'IMPORT_0': 'basepair.h', 'IMPORT_1': 'vector', 'IMPORT_2': 'algorithm', 'CLASS_0': 'using', 'VAR_0': 'namespace', 'CLASS_1': 'basepair', 'VAR_1': 'basepair', 'FUNC_0': 'GetBroken', 'VAR_2': 'j', 'FUNC_1': 'SetIntact', 'VAR_3': 'intact'}
#include <math.h> #include <stdio.h> #include <stdlib.h> #include <assert.h> #include <unistd.h> #include <qthread/qthread.h> #include "argparsing.h" static syncvar_t x = SYNCVAR_STATIC_INITIALIZER; static syncvar_t id = SYNCVAR_STATIC_INITIALIZER; static uint64_t readout = 0; static aligned_t consumer(void *arg) { ...
#include <IMPORT_0> #include <stdio.h> #include <IMPORT_1> #include <assert.h> #include <IMPORT_2> #include <IMPORT_3> #include "IMPORT_4" static syncvar_t VAR_0 = VAR_1; static syncvar_t VAR_2 = VAR_1; static uint64_t VAR_3 = 0; static CLASS_0 FUNC_0(void *arg) { uint64_t VAR_5; iprintf("consumer locking id...
0.452501
{'IMPORT_0': 'math.h', 'IMPORT_1': 'stdlib.h', 'IMPORT_2': 'unistd.h', 'IMPORT_3': 'qthread/qthread.h', 'IMPORT_4': 'argparsing.h', 'VAR_0': 'x', 'VAR_1': 'SYNCVAR_STATIC_INITIALIZER', 'VAR_2': 'id', 'VAR_3': 'readout', 'CLASS_0': 'aligned_t', 'FUNC_0': 'consumer', 'VAR_4': 'consumer', 'VAR_5': 'me', 'FUNC_1': 'qthread...
/** * @file main.c * @author <NAME> (<EMAIL>) * @brief Sample usage for gas sensor * @date 2021-10-06 * * @copyright Copyright (C) 2021 LION * * SPDX-License-Identifier: Apache-2.0 * */ #include <zephyr.h> #include <drivers/sensor.h> #include <drivers/sensor/mics4514.h> #define GAS_SENSOR DT_LABEL(DT_NODE...
/** * @file main.c * @author <NAME> (<EMAIL>) * @brief Sample usage for gas sensor * @date 2021-10-06 * * @copyright Copyright (C) 2021 LION * * SPDX-License-Identifier: Apache-2.0 * */ #include <IMPORT_0> #include <IMPORT_1> #include <IMPORT_2> #define VAR_0 DT_LABEL(DT_NODELABEL(gas_sensor)) void FUNC_...
0.650551
{'IMPORT_0': 'zephyr.h', 'IMPORT_1': 'drivers/sensor.h', 'IMPORT_2': 'drivers/sensor/mics4514.h', 'VAR_0': 'GAS_SENSOR', 'FUNC_0': 'main', 'CLASS_0': 'device', 'VAR_1': 'gas', 'CLASS_1': 'sensor_value', 'VAR_2': 'co', 'VAR_3': 'no2', 'FUNC_1': 'sensor_sample_fetch', 'FUNC_2': 'sensor_channel_get', 'VAR_4': 'SENSOR_CHAN...
/** \brief This module implements the gnocl::scroll widget. \authors <NAME>, <NAME> \date 2009-12: */ /** \page page_scroll gnocl::scroll \htmlinclude scroll.html **/ /** \par Modification History \verbatim 2013-07: added commands, options, commands 2008-10: added command, class 2004-02: added...
/** \brief This module implements the gnocl::scroll widget. \authors <NAME>, <NAME> \date 2009-12: */ /** \page page_scroll gnocl::scroll \htmlinclude scroll.html **/ /** \par Modification History \verbatim 2013-07: added commands, options, commands 2008-10: added command, class 2004-02: added...
0.220204
{'VAR_0': 'opt', 'VAR_1': 'ret', 'VAR_2': 'd', 'VAR_3': 'widget', 'CLASS_0': 'gpointer', 'VAR_4': 'gnoclOptData', 'VAR_5': 'GNOCL_INT', 'VAR_6': 'GNOCL_BOOL', 'VAR_7': 'gnoclOptPosition', 'VAR_8': 'onValueChangedIdx', 'VAR_9': 'types', 'FUNC_0': 'gnoclOptGeneric', 'FUNC_1': 'gtk_range_get_adjustment', 'VAR_10': 'para',...
#include <iostream> #include <utility> #include "tddFuncs.h" #include <map> #include <vector> #include <string> #include <cstring> // for http://en.cppreference.com/w/cpp/container/priority_queue #include <queue> using std::cout; using std::cerr; using std::endl; class WordItem { public: WordItem() : // Req...
#include <IMPORT_0> #include <utility> #include "tddFuncs.h" #include <map> #include <vector> #include <string> #include <cstring> // for http://en.cppreference.com/w/cpp/container/priority_queue #include <queue> using std::cout; using std::cerr; using std::VAR_0; class WordItem { public: WordItem() : // Re...
0.074267
{'IMPORT_0': 'iostream', 'VAR_0': 'endl', 'FUNC_0': 'word', 'VAR_1': 'word', 'FUNC_1': 'pop'}
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. #include <assert.h> #include <stdio.h> #include <sys/inotify.h> #include <unistd.h> int main(int argc, const char* argv[]) { int fd; int wd1; int wd2; int wd3; assert((fd = inotify_init1(0)) >= 0); assert((wd1 = inotif...
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. #include <IMPORT_0> #include <IMPORT_1> #include <IMPORT_2> #include <IMPORT_3> int main(int VAR_0, const char* VAR_1[]) { int VAR_2; int VAR_3; int VAR_4; int VAR_5; FUNC_0((VAR_2 = FUNC_1(0)) >= 0); FUNC_0((VAR_3 = F...
0.846372
{'IMPORT_0': 'assert.h', 'IMPORT_1': 'stdio.h', 'IMPORT_2': 'sys/inotify.h', 'IMPORT_3': 'unistd.h', 'VAR_0': 'argc', 'VAR_1': 'argv', 'VAR_2': 'fd', 'VAR_3': 'wd1', 'VAR_4': 'wd2', 'VAR_5': 'wd3', 'FUNC_0': 'assert', 'FUNC_1': 'inotify_init1', 'FUNC_2': 'inotify_add_watch', 'VAR_6': 'IN_ACCESS', 'FUNC_3': 'inotify_rm_...
// Original version from https://github.com/adafruit/Adafruit_NeoPixel // Modifications by dpgeorge to support auto-CPU-frequency detection // This is a mash-up of the Due show() code + insights from <NAME>'s // ESP8266 work for the NeoPixelBus library: github.com/Makuna/NeoPixelBus // Needs to be a separate .c file t...
// Original version from https://github.com/adafruit/Adafruit_NeoPixel // Modifications by dpgeorge to support auto-CPU-frequency detection // This is a mash-up of the Due show() code + insights from <NAME>'s // ESP8266 work for the NeoPixelBus library: github.com/Makuna/NeoPixelBus // Needs to be a separate .c file t...
0.745984
{'IMPORT_0': 'py/mpconfig.h', 'IMPORT_1': 'py/mphal.h', 'IMPORT_2': 'modesp.h', 'VAR_0': 'IRAM_ATTR', 'FUNC_0': 'esp_neopixel_write', 'VAR_1': 'pin', 'VAR_2': 'pixels', 'VAR_3': 'numBytes', 'VAR_4': 'timing', 'VAR_5': 'end', 'VAR_6': 'pix', 'VAR_7': 'mask', 'VAR_8': 't', 'VAR_9': 'time1', 'VAR_10': 'period', 'VAR_11': ...
/* Netvideo version 3.2 Written by <NAME> <<EMAIL>> Common definitions */ /* * Copyright (c) Xerox Corporation 1992. All rights reserved. * * License is granted to copy, to use, and to make and to use derivative * works for research and evaluation purposes, provided that Xerox is * acknowledged in all docum...
/* Netvideo version 3.2 Written by <NAME> <<EMAIL>> Common definitions */ /* * Copyright (c) Xerox Corporation 1992. All rights reserved. * * License is granted to copy, to use, and to make and to use derivative * works for research and evaluation purposes, provided that Xerox is * acknowledged in all docum...
0.94046
{'VAR_0': 'NV_DEFAULT_ADDR', 'VAR_1': 'NV_DEFAULT_PORT', 'VAR_2': 'NV_ICON_WIDTH', 'VAR_3': 'NV_ICON_HEIGHT', 'VAR_4': 'NV_MIN_FLOW', 'VAR_5': 'MAX_NAMELEN', 'VAR_6': 'MAX_VID_PACKLEN', 'VAR_7': 'MAX_SOURCES', 'VAR_8': 'MAX_RECEIVERS', 'VAR_9': 'GRAB_ERROR_TIME', 'VAR_10': 'EST_FRAME_TIME', 'VAR_11': 'IDLEPOLL_TIME', '...
/* Copyright 2015 OpenMarket Ltd Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, softwar...
/* Copyright 2015 OpenMarket Ltd Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, softwar...
0.50352
{'CLASS_0': 'interface', 'VAR_0': 'JSQMessageMediaData', 'ID_0': 'instancetype', 'VAR_1': 'initWithCellData', 'VAR_2': 'MXKRoomBubbleCellData'}
#ifndef C0P_PARAM_OBJECTS_SURFER__US_1O0__SURFTIMECONST_8O0__REORIENTATIONTIME_1O0_GROUP_HOMOGENEOUS_MEMBER_AGENT_BEHAVIOUR_NAVIGATOR_BEHAVIOUR_DIRECTION_SURF_CHOICE_H #define C0P_PARAM_OBJECTS_SURFER__US_1O0__SURFTIMECONST_8O0__REORIENTATIONTIME_1O0_GROUP_HOMOGENEOUS_MEMBER_AGENT_BEHAVIOUR_NAVIGATOR_BEHAVIOUR_DIRECTIO...
#ifndef VAR_0 #define VAR_0 #pragma once // THIS FILE SHOULD NOT BE EDITED DIRECTLY BY THE USERS. // THIS FILE WILL BE AUTOMATICALLY EDITED WHEN THE // CHOOSE COMMAND IS USED // behaviour time horizon choice #include "IMPORT_0" // choose your behaviour #include "IMPORT_1" #include "IMPORT_2" CLASS_0 VAR_1 { VAR_2...
0.735929
{'VAR_0': 'C0P_PARAM_OBJECTS_SURFER__US_1O0__SURFTIMECONST_8O0__REORIENTATIONTIME_1O0_GROUP_HOMOGENEOUS_MEMBER_AGENT_BEHAVIOUR_NAVIGATOR_BEHAVIOUR_DIRECTION_SURF_CHOICE_H', 'IMPORT_0': 'param/env/objects/surfer__us_1o0__surftimeconst_8o0__reorientationtime_1o0/group/homogeneous/_member/agent/_behaviour/navigator/_behav...
// // Common.h // // // Created by <NAME> on 05/02/2015. // // // Common definitions etc. #ifndef GUARD_COMMON_H #define GUARD_COMMON_H //======================= MPI / Petsc HEADER FILES ===================== #include "mpi.h" #include "petscdmda.h" #include "petscsys.h" #include "petscksp.h" #include "petsctime...
// // Common.h // // // Created by <NAME> on 05/02/2015. // // // Common definitions etc. #ifndef GUARD_COMMON_H #define GUARD_COMMON_H //======================= MPI / Petsc HEADER FILES ===================== #include "mpi.h" #include "petscdmda.h" #include "petscsys.h" #include "IMPORT_0" #include "IMPORT_1" ...
0.444441
{'IMPORT_0': 'petscksp.h', 'IMPORT_1': 'petsctime.h', 'FUNC_0': 'SIGN', 'VAR_0': 'NUM_NEIGHBRS', 'VAR_1': 'NUM_TERMS', 'ID_0': 'midxType', 'ID_1': 'idxType'}
// // LFBaseEditingController.h // LFMediaEditingController // // Created by LamTsanFeng on 2017/6/9. // Copyright © 2017年 LamTsanFeng. All rights reserved. // #import <UIKit/UIKit.h> @interface LFBaseEditingController : UIViewController /** 是否隐藏状态栏 默认YES */ @property (nonatomic, assign) BOOL isHiddenStatusBar; ...
// // LFBaseEditingController.h // LFMediaEditingController // // Created by LamTsanFeng on 2017/6/9. // Copyright © 2017年 LamTsanFeng. All rights reserved. // #import <UIKit/UIKit.h> @interface VAR_0 : UIViewController /** 是否隐藏状态栏 默认YES */ @property (VAR_1, assign) CLASS_1 isHiddenStatusBar; /// 自定义外观颜色 @prope...
0.47536
{'VAR_0': 'LFBaseEditingController', 'VAR_1': 'nonatomic', 'ID_0': 'nonatomic', 'CLASS_0': 'nonatomic', 'CLASS_1': 'BOOL', 'VAR_2': 'strong', 'VAR_3': 'oKButtonTitleColorNormal', 'VAR_4': 'cancelButtonTitleColorNormal', 'VAR_5': 'NSString', 'CLASS_2': 'NSString', 'VAR_6': 'oKButtonTitle', 'VAR_7': 'deprecated', 'VAR_8'...
/**************************************************************************** * examples/bg96_task/bg96_task.c * * Copyright (C) 2008, 2011-2012 <NAME>. All rights reserved. * Author: <NAME> <<EMAIL>> * * Redistribution and use in source and binary forms, with or without * modification, are permitted provide...
/**************************************************************************** * examples/bg96_task/bg96_task.c * * Copyright (C) 2008, 2011-2012 <NAME>. All rights reserved. * Author: <NAME> <<EMAIL>> * * Redistribution and use in source and binary forms, with or without * modification, are permitted provide...
0.957343
{'IMPORT_23': 'stdio.h', 'IMPORT_24': 'stdlib.h', 'IMPORT_25': 'string.h', 'IMPORT_26': 'termios.h', 'IMPORT_27': 'time.h', 'IMPORT_28': 'sys/types.h', 'IMPORT_29': 'sys/stat.h', 'IMPORT_30': 'sys/ioctl.h', 'IMPORT_31': 'fcntl.h', 'IMPORT_32': 'errno.h', 'IMPORT_33': 'unistd.h', 'IMPORT_34': 'arpa/inet.h', 'IMPORT_35':...
// // Created by <NAME> on 26.06.2021. // #ifndef PLATFORM_IO_IRREMOTEBUTTON_H #define PLATFORM_IO_IRREMOTEBUTTON_H enum Button { BTN_NONE, BTN_0, BTN_1, BTN_2, BTN_3, BTN_4, BTN_5, BTN_6, BTN_7, BTN_8, BTN_9, BTN_UP, BTN_DOWN, BTN_LEFT, BTN_RIGHT, BTN_E...
// // Created by <NAME> on 26.06.2021. // #ifndef PLATFORM_IO_IRREMOTEBUTTON_H #define PLATFORM_IO_IRREMOTEBUTTON_H enum Button { BTN_NONE, BTN_0, BTN_1, BTN_2, BTN_3, BTN_4, BTN_5, BTN_6, BTN_7, BTN_8, BTN_9, BTN_UP, BTN_DOWN, BTN_LEFT, BTN_RIGHT, BTN_E...
0.018759
{}
/* * CGlib * * A Low-Level GPU Graphics and Utilities API * * Copyright (C) 2012 Red Hat, Inc. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including wit...
/* * CGlib * * A Low-Level GPU Graphics and Utilities API * * Copyright (C) 2012 Red Hat, Inc. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including wit...
0.2313
{'IMPORT_0': 'cg-output-private.h', 'FUNC_0': 'CG_OBJECT_DEFINE', 'VAR_0': 'Output', 'VAR_1': 'name', 'FUNC_1': '_cg_output_object_new', 'FUNC_2': 'C_STRUCT_OFFSET', 'CLASS_0': 'cg_subpixel_order_t', 'VAR_2': 'subpixel_order', 'FUNC_3': 'cg_output_get_refresh_rate'}
/* Copyright (c) 1997-2020 <NAME> and others. */ /* < https://opensource.org/licenses/BSD-3-Clause > */ // ----------------------------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------------------...
/* Copyright (c) 1997-2020 <NAME> and others. */ /* < https://opensource.org/licenses/BSD-3-Clause > */ // ----------------------------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------------------...
0.676908
{'IMPORT_0': '../../m_spaghettis.h', 'IMPORT_1': '../../m_core.h', 'IMPORT_2': '../../g_graphics.h', 'CLASS_0': 't_outconnect', 'FUNC_0': 'traverser_outletStart', 'CLASS_1': 't_object', 'VAR_0': 'x', 'CLASS_2': 't_outlet', 'VAR_1': 'ptr', 'VAR_2': 'n', 'FUNC_1': 'object_getOutlets', 'FUNC_2': 'outlet_getConnections', '...
#pragma once //------------------------------------------------------------------------------ // SimpsonIntegrator.h // Implement integration via Simpsons method // // Copyright (c) 2019 GlenSand // All rights reserved. // // Date: 27.09.2019 // Author: <NAME> //--------------------------------------------------------...
#pragma once //------------------------------------------------------------------------------ // SimpsonIntegrator.h // Implement integration via Simpsons method // // Copyright (c) 2019 GlenSand // All rights reserved. // // Date: 27.09.2019 // Author: <NAME> //--------------------------------------------------------...
0.848757
{'IMPORT_0': 'OneDimensionalIntegrator.h', 'CLASS_0': 'class', 'VAR_0': 'SimpsonIntegrator', 'FUNC_0': 'SimpsonIntegrator', 'VAR_1': 'OneDimensionalIntegrator', 'VAR_2': 'default', 'CLASS_1': 'virtual', 'CLASS_2': 'Real', 'VAR_3': 'Real', 'FUNC_1': 'Integrate', 'CLASS_3': 'Params', 'VAR_4': 'Params', 'VAR_5': 'params',...
/* * BP-DBSQLSGerators.h * * Created on: Nov 19, 2015 * Author: root */ #ifndef INCLUDE_DATABASES_BPDB_BP_DBSQLSYNTAXGENERATORS_H_ #define INCLUDE_DATABASES_BPDB_BP_DBSQLSYNTAXGENERATORS_H_ // %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% // %%% Open or Close Syntax Generation Session %%%%...
/* * BP-DBSQLSGerators.h * * Created on: Nov 19, 2015 * Author: root */ #ifndef INCLUDE_DATABASES_BPDB_BP_DBSQLSYNTAXGENERATORS_H_ #define INCLUDE_DATABASES_BPDB_BP_DBSQLSYNTAXGENERATORS_H_ // %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% // %%% Open or Close Syntax Generation Session %%%%...
0.214185
{'CLASS_0': 'P_BPDB', 'VAR_0': 'syngen', 'CLASS_1': 'P_BPDB_SQLGEN_SELECT', 'CLASS_2': 'BP_BOOL', 'VAR_1': 'path', 'FUNC_0': 'BP_DBCheckJoinElements', 'VAR_2': 'destroy_bind_results', 'VAR_3': 'destroy_field_name_list', 'FUNC_1': 'BP_DBDisplaySelectInfoSelectJoin'}
/* Decode a Pop Segment Register Instruction */ static int iApopSeg(IAinstInfoPtr info, BYTE dest) { if (StackAddrSize(info->mode) == IA16) info->srcRdFn = pop_spIARd; else info->srcRdFn = pop_espIARd; info->destRdFn = segRegUpdateIARd; info->destWrFn = segRegIAWr; info->cond_seg = dest; info...
/* Decode a Pop Segment Register Instruction */ static int iApopSeg(IAinstInfoPtr VAR_0, BYTE dest) { if (FUNC_0(VAR_0->mode) == IA16) VAR_0->srcRdFn = pop_spIARd; else VAR_0->srcRdFn = VAR_1; VAR_0->VAR_2 = VAR_3; VAR_0->VAR_4 = VAR_5; VAR_0->cond_seg = dest; VAR_0->execFn = VAR_6; VAR_0...
0.409401
{'VAR_0': 'info', 'FUNC_0': 'StackAddrSize', 'VAR_1': 'pop_espIARd', 'VAR_2': 'destRdFn', 'VAR_3': 'segRegUpdateIARd', 'VAR_4': 'destWrFn', 'VAR_5': 'segRegIAWr', 'VAR_6': 'popIAEx', 'VAR_7': 'dasFn'}
#ifndef PBRSpriteLayer_H #define PBRSpriteLayer_H #include <fastgfx.h> #include "PBRSpriteBuffer.h" #include <glm/glm.hpp> #include <vector> #include <map> #include <string> namespace fgfx { class PBRSpriteLayer : public fgfx::TypedLayer<PBRSpriteLayer> { protected: std::vector<PBRSpriteBuffer*> buffers; ...
#ifndef VAR_0 #define VAR_0 #include <IMPORT_0> #include "IMPORT_1" #include <glm/glm.hpp> #include <vector> #include <map> #include <string> namespace fgfx { class PBRSpriteLayer : VAR_1 fgfx::TypedLayer<PBRSpriteLayer> { protected: std::vector<PBRSpriteBuffer*> buffers; friend class PBRSpriteBuffer; ...
0.160445
{'VAR_0': 'PBRSpriteLayer_H', 'IMPORT_0': 'fastgfx.h', 'IMPORT_1': 'PBRSpriteBuffer.h', 'VAR_1': 'public', 'CLASS_0': 'GLuint', 'VAR_2': 'spriteProgramAttribColorCoord', 'VAR_3': 'spriteProgramAttribNormalCoord', 'VAR_4': 'static', 'VAR_5': 'Engine', 'VAR_6': 'shared_ptr', 'VAR_7': 'vec4', 'FUNC_0': 'upload', 'VAR_8': ...
/* * Function: sd_set_vers1_properties * * Description: Set version 1 device properties based on a property list * retrieved from the driver configuration file or static * configuration table. Version 1 properties have the format: * * <data-property-name>:=<version>,<flags>,<prop0>,<prop1>,.....<propN> * ...
/* * Function: sd_set_vers1_properties * * Description: Set version 1 device properties based on a property list * retrieved from the driver configuration file or static * configuration table. Version 1 properties have the format: * * <data-property-name>:=<version>,<flags>,<prop0>,<prop1>,.....<propN> * ...
0.91905
{'FUNC_0': 'sd_set_vers1_properties', 'CLASS_0': 'sd_lun', 'VAR_0': 'un', 'CLASS_1': 'sd_tunables', 'VAR_1': 'prop_list', 'FUNC_1': 'ASSERT', 'VAR_2': 'SD_CONF_BSET_NOCACHE', 'VAR_3': 'un_f_opt_disable_cache', 'FUNC_2': 'SD_INFO', 'VAR_4': 'SD_LOG_ATTACH_DETACH', 'VAR_5': 'SD_CONF_BSET_PLAYMSF_BCD', 'VAR_6': 'un_f_cfg_...
#ifndef Roomba_H #define Roomba_H #define LOWBYTE(v) ((unsigned char) (v)) #define HIGHBYTE(v) ((unsigned char) (((unsigned int) (v)) >> 8)) #include <stdio.h> #include <stdlib.h> #include <iostream> #include <string.h> #include <bitset> #include <ftdi.h> #include "RoombaSensors.h" using namespace std; //void de...
#ifndef VAR_0 #define VAR_0 #define LOWBYTE(v) ((unsigned char) (v)) #define HIGHBYTE(v) ((unsigned char) (((unsigned int) (v)) >> 8)) #include <stdio.h> #include <IMPORT_0> #include <IMPORT_1> #include <string.h> #include <bitset> #include <ftdi.h> #include "RoombaSensors.h" using namespace std; //void delay( u...
0.296505
{'VAR_0': 'Roomba_H', 'IMPORT_0': 'stdlib.h', 'IMPORT_1': 'iostream', 'CLASS_0': 'Opcode', 'VAR_1': 'DRIVE', 'VAR_2': 'SENSOR', 'VAR_3': 'B300', 'VAR_4': 'B600', 'VAR_5': 'B2400', 'VAR_6': 'B14400', 'VAR_7': 'B57600', 'VAR_8': 'CONTROL', 'VAR_9': 'POWER', 'CLASS_1': 'LED', 'VAR_10': 'DIRT_DETECT', 'VAR_11': 'STATUS', '...
/* * Convert a base64 string into raw byte array representation. */ static int t_fromb64(unsigned char *a, size_t alen, const char *src) { size_t size = strlen(src); if (size > INT_MAX || (size / 4) * 3 > alen) return -1; return EVP_DecodeBlock(a, (unsigned char *)src, (int)size); }
/* * Convert a base64 string into raw byte array representation. */ static int FUNC_0(unsigned char *a, size_t VAR_0, const char *src) { size_t VAR_1 = strlen(src); if (VAR_1 > INT_MAX || (VAR_1 / 4) * 3 > VAR_0) return -1; return EVP_DecodeBlock(a, (unsigned char *)src, (int)VAR_1); }
0.573987
{'FUNC_0': 't_fromb64', 'VAR_0': 'alen', 'VAR_1': 'size'}
/** * software initialize * * @param flash flash device * * @return result */ static sfud_err software_init(const sfud_flash *flash) { sfud_err result = SFUD_SUCCESS; SFUD_ASSERT(flash); return result; }
/** * software initialize * * @param flash flash device * * @return result */ static CLASS_0 software_init(const sfud_flash *flash) { CLASS_0 VAR_0 = VAR_1; FUNC_0(flash); return VAR_0; }
0.397568
{'CLASS_0': 'sfud_err', 'VAR_0': 'result', 'VAR_1': 'SFUD_SUCCESS', 'FUNC_0': 'SFUD_ASSERT'}
#pragma once #include <cctype> #include <cstdint> #include <cstring> #include <map> #include <string> #include <string_view> #include <unordered_map> #include <unordered_set> #include <common/identifier_ref.h> #include <common/UtilMacros.h> namespace caprica { void identifierToLower(std::string& str); bool caseles...
#pragma once #include <cctype> #include <IMPORT_0> #include <IMPORT_1> #include <map> #include <string> #include <string_view> #include <unordered_map> #include <unordered_set> #include <common/identifier_ref.h> #include <common/UtilMacros.h> namespace caprica { void FUNC_0(std::string& str); bool caselessEq(std::...
0.290402
{'IMPORT_0': 'cstdint', 'IMPORT_1': 'cstring', 'FUNC_0': 'identifierToLower', 'FUNC_1': 'idEq', 'VAR_0': 'bool', 'CLASS_0': 'CaselessStringEqual', 'VAR_1': 'CaselessStringEqual', 'CLASS_1': 'CaselessPathEqual', 'VAR_2': 'CaselessPathEqual', 'FUNC_2': 'hash', 'VAR_3': 'hash', 'VAR_4': 's', 'FUNC_3': 'identifierHash', 'V...
// // WMZFormDelegate.h // WMZForm // // Created by wmz on 2020/5/11. // Copyright © 2020 wmz. All rights reserved. // #import <Foundation/Foundation.h> @class WMZForm,WMZFormRowModel,WMZFormBaseCell; NS_ASSUME_NONNULL_BEGIN @protocol WMZFormDelegate <NSObject> @optional /* *formCell点击 @param cell 所在的cell (...
// // WMZFormDelegate.h // WMZForm // // Created by wmz on 2020/5/11. // Copyright © 2020 wmz. All rights reserved. // #import <Foundation/Foundation.h> @CLASS_0 VAR_0,WMZFormRowModel,VAR_1; NS_ASSUME_NONNULL_BEGIN @VAR_2 WMZFormDelegate <VAR_3> @optional /* *formCell点击 @param cell 所在的cell (cell.model为model...
0.518725
{'CLASS_0': 'class', 'VAR_0': 'WMZForm', 'VAR_1': 'WMZFormBaseCell', 'VAR_2': 'protocol', 'VAR_3': 'NSObject', 'VAR_4': 'form', 'VAR_5': 'didSelectRowAtCell', 'VAR_6': 'info', 'VAR_7': 'commitInfo', 'VAR_8': 'success', 'VAR_9': 'clickView', 'VAR_10': 'type', 'VAR_11': 'id', 'VAR_12': 'end'}
#include <stdio.h> #define TEST 0 double A[1000][2] = {0}; int max_ratio(int n) { int max_idx = 0, i = 0; for(i = 0; i < n; ++i) { if(A[i][1] > 0) { max_idx = i; break; } } for(i = 0; i < n; ++i) { if( (A[i][1] > 0) && ((A[i][0] / A[i][1]) > (A[max_idx][0] / A[max_id...
#include <IMPORT_0> #define VAR_0 0 double VAR_1[1000][2] = {0}; int FUNC_0(int VAR_2) { int VAR_3 = 0, i = 0; for(i = 0; i < VAR_2; ++i) { if(VAR_1[i][1] > 0) { VAR_3 = i; break; } } for(i = 0; i < VAR_2; ++i) { if( (VAR_1[i][1] > 0) && ((VAR_1[i][0] / VAR_1[i][1]) ...
0.518286
{'IMPORT_0': 'stdio.h', 'VAR_0': 'TEST', 'VAR_1': 'A', 'FUNC_0': 'max_ratio', 'VAR_2': 'n', 'VAR_3': 'max_idx', 'FUNC_1': 'solve', 'FUNC_2': 'main', 'VAR_4': 'res', 'FUNC_3': 'scanf'}
/* * Intel(R) Processor Trace PMU driver for perf * Copyright (c) 2013-2014, Intel Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This prog...
/* * Intel(R) Processor Trace PMU driver for perf * Copyright (c) 2013-2014, Intel Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This prog...
0.737393
{'VAR_0': '__INTEL_PT_H__', 'CLASS_0': 'topa_sz', 'VAR_1': 'TOPA_8K', 'VAR_2': 'TOPA_16K', 'VAR_3': 'TOPA_32K', 'VAR_4': 'TOPA_64K', 'VAR_5': 'TOPA_128K', 'VAR_6': 'TOPA_2MB', 'VAR_7': 'TOPA_8MB', 'VAR_8': 'TOPA_32MB', 'VAR_9': 'TOPA_64MB', 'VAR_10': 'TOPA_128MB', 'VAR_11': 'TOPA_SZ_END', 'FUNC_0': 'sizes', 'VAR_12': '...
// // yas_ui_strings.h // #pragma once #include <ui/yas_ui_font_atlas.h> #include <ui/yas_ui_layout_guide.h> #include <ui/yas_ui_layout_types.h> #include <ui/yas_ui_rect_plane.h> #include <ui/yas_ui_strings_types.h> namespace yas::ui { struct strings final { void set_text(std::string); void set_line_height(...
// // yas_ui_strings.h // #pragma once #include <IMPORT_0> #include <IMPORT_1> #include <IMPORT_2> #include <IMPORT_3> #include <ui/yas_ui_strings_types.h> CLASS_0 VAR_0::VAR_1 { struct CLASS_2 VAR_3 { void FUNC_1(CLASS_3::VAR_5); void FUNC_2(CLASS_3::VAR_6<float>); void FUNC_3(CLASS_1::VAR_7 VAR_8); ...
0.96067
{'IMPORT_0': 'ui/yas_ui_font_atlas.h', 'IMPORT_1': 'ui/yas_ui_layout_guide.h', 'IMPORT_2': 'ui/yas_ui_layout_types.h', 'IMPORT_3': 'ui/yas_ui_rect_plane.h', 'CLASS_0': 'namespace', 'VAR_0': 'yas', 'VAR_1': 'ui', 'CLASS_1': 'ui', 'CLASS_2': 'strings', 'VAR_2': 'strings', 'FUNC_0': 'strings', 'ID_0': 'strings', 'VAR_3': ...